software updates

Micropython 1.22 built with ESP IDF 5.2.1 via iPhone Safari

First, the big news. The latest updates to the Micropython code base now allow it to be built with Espressif’s ESP-IDF version 5.2. At the same time these changes were pushed out into the Micropython repository, Espressif dropped ESP-IDF 5.2.1, which I installed on my development system, then used to build my updated Micropython with the latest changes noted above. Micropython successfully built and I was then able to flash one of my ESP32-S3 development boards, and away I went with my stand-alone WiFi test board.

C++ application built with ESP IDF 5.2.1 via iPhone Safari

I then used the same ESP-IDF tool chain to build one of my C++ embedded applications, in which it joins my home WiFi access point and allows me to then bring up its simple web page. Again, everything built and flashed. This is with an ESP32-S3 development board with 32 MiB flash and 8 MiB external ram.

CircuitPython Update

One other update comes from CircuitPython: they’ve just dropped version 9.0.0 release candidate 0. I’ve downloaded and installed it on two of my boards that can handle it, and so far it’s doing just fine. If you like CircuitPython and use it for ESP32-S3-based boards, then by all means consider downloading and installing this version. It’s clean and stable enough for you to work with. Quoting from the release note, the key features out of many that caught my eye are:

  • Merge updates from MicroPython v1.19.1, v1.20.0, and v1.21.0.
  • Espressif: update to ESP-IDF v5.1.3.

Micropython and CircuitPython are moving rapidly, adding support for the latest boards as well as adding new functionality for existing devices, especially on the Espressif side of things.

arduino uno r4 wifi — introduction

Arduino Uno R4 WiFi

I purchased the recently release Arduino UNO R4 WiFi from Amazon for US$27.50, the same price that Arduino charges on its website. I was drawn to it because if its intriguing mix of a Renesas RA4M1 (Arm® Cortex®-M4) running at 48MHz and an Espressif ESP32-S3 microcontroller peripheral for WiFi and Bluetooth support. I’ve barely gotten started with working with it, so I don’t have much to say about what its fit for purpose for, but so far it’s been extremely easy to program when paired with Arduino’s latest Arduino IDE, version 2.3.2.

Arduino IDE 2.3.2 with UNO R4 WiFi sketch

Pairing this latest Arduino board to the Arduino IDE is incredibly easy. After first plugging in the R4 and then starting the IDE, the IDE immediately identified the board and was ready for me to build a sketch and then flash that sketch to the R4. A little bit of searching uncovered the C/C++ source to the initial application the board is shipped with (see links below), as well as a lot of other programming examples that exercise the WiFi and Bluetooth features of the ESP32-S3 peripheral.

One big feature I like is that the new Arduino IDE 2 is based on Eclipse Theia, an alternative framework for building IDEs. That is completely unlike Visual Studio Code, which is built on top of Electron. That makes the Arduino IDE 2 a much more agile and leaner tool than Visual Studio Code. I prefer Arduino IDE over Visual Studio Code.

One little feature about this board, and all other Arduino boards like it; it ships with a clear plastic cover snapped onto the bottom of the board. That means you can start to work with the board as soon as you remove it from its box, because sitting it down won’t cause any part of the board to short, especially if you sit it on a conductive surface. I find that original Arduino boards have a touch of engineering class, if you will.

I also find that the low cost of the UNO 4 compared to recent Raspberry Pi boards (both the 4 and the 5) is a lot cheaper, yet it’s powerful enough to run embedded applications that can do quite a bit. Unless you’ve got a strong use case for running embedded Linux, the UNO 4 is more than capable of performing quite a bit without the much higher cost and overhead of running an embedded operating system to support your embedded application.

Bottom line, I’m quite happy to have purchased this board, and I’m looking forward to seeing what I can do with it. I’m sure I’ll be able to do quite a bit.

Links