217 comments

[ 3.0 ms ] story [ 271 ms ] thread
> ESP32-C6 If you need Wi-Fi 6 or ZigBee Support, this is the SoC you want to look for.

I don't think that you can buy this one yet..

It was actually launched in Jan 2023. It's been mostly out of stock, but a bare module with 4mb spi flash is in stock right now. However, currently populated dev boards are overpriced.

https://www.adafruit.com/product/5670

edit: I'd wait to buy it regardless, software and sdk is still under active development.

https://github.com/espressif/esp-idf/issues/10423 https://www.reddit.com/r/esp32/comments/10pkuin/esp32c6_real...

Right now it's the best time to buy "obsolete" Devkit V1 boards ;)
Only one with Zigbee and Wi-Fi 6
It supports wifi 6 but only on 2.4 ghz.
Haha, that's like saying you eat vegetables while only eating tomatoes.
at least it's not saying like asking for microUSB and getting USB-C...
great to know, thanks.

I'm surprised that they don't talk about OTG in this article... Maybe only the S-series supports it

I've bought 6 of these direct from Espressif on Aliexpress, highly recommend!
The ESP32-C3 has a limited number of IOs but it is very small and has a connector for an external antenna (At least the Seeed Xiao ESP32-C3 does). It's great for many applications when a bit of Wifi range is needed.
for playing around you probably want one with USB mount and circuitpython
I did some playing around with ESP8266 and found dealing with HTTPS to be a pain when certificates changed. Have things improved?
If you're just making HTTPS requests to your own servers, you can simply include the root certificate of the CA you're using, pass it to the config when calling `esp_http_client_init` (https://docs.espressif.com/projects/esp-idf/en/latest/esp32c...) and then you probably don't have to worry about it for a long time, it will work through your regular certificate rotation.

See https://docs.espressif.com/projects/esp-idf/en/latest/esp32c...

If you need to make requests to other people's servers, there is a tool to generate and include a bundle from Mozilla, that you can update in the future as part of an OTA update (https://docs.espressif.com/projects/esp-idf/en/latest/esp32c...).

The -S2 (and -S3?) have native USB so you don't need a USB-UART chip on-board, and they can thus emulate other classes of USB devices. That's something I was hoping to find mentioned in this guide, but nope.
Yeah, this is great if you're making your own PCBs -- all you need is the ESP32 module, power supply and a USB connector.

There's no need for a usb-serial converter, JTAG connector (you can debug over USB), or a serial header with yet another random pinout that you have to figure out every time you want to program the thing...

Exactly! Our board at work got all our JTAG pins back for us to use for other things, and we got a more robust programming/debugging setup to boot. So nice. The S3 is phenomenal, and the LX7 on it is surprisingly powerful too.
Nice. They also tidied up the GPIOs a lot, which is such a good quality of life improvement (though I did spend a while hunting through the datasheet looking for the bit where they tell you that GPIO7 can only be used as an output during a full moon, or whatever).
ESP32-C3 also has built-in USB serial/JTAG functionality (https://docs.espressif.com/projects/esp-idf/en/latest/esp32c...).

Unlike the ESP32-S ones though, that's all it does on the C, so you can use it to program and debug the thing, but you cannot make your own USB device with it.

Do you have any more information on this? It would be great to get this running in PlatformIO
Not much to be said, it should "just work" out of the box. You plug a board in (for example this one https://www.dfrobot.com/product-2566.html, I've seen it in a bunch of online stores in Europe), and it should give you a COM port on Windows, a `/dev/cu.usbmodem...` device on macOS, and something similar on Linux. Then all the usual tools should work as normal, at least the ones that come with ESP-IDF.

On the chip or the modules, this is pins GPIO18 and GPIO19 that just need to be directly connected to USB D- and D+. Of course the chip still needs between 3.0V and 3.6V for power, so you can't power it from USB directly. If the firmware is just rebooting all the time (sometimes the case on a fresh module), you may need to pull GPIO9 low to enter bootloader instead (https://docs.espressif.com/projects/esptool/en/latest/esp32c..., there is a button for this on some boards), but otherwise you can just flash it in normal mode too.

Oh, so this isn’t full in circuit debugging like ESP-PROG would enable, correct? These parts just have built in USB-Serial for programming and printing to the terminal without an external IC.

Edit: Never mind, it does appear to allow full in circuit debugging. I’ll have to do some more research.

As far as debugging goes, you basically need to run `idf.py openocd` to start OpenOCD, and then connect to it with the gdb that's part of the ESP-IDF SDK, by default it should be listening on port 3333. At least that's how I have it set up in CLion.

There is more info here https://docs.espressif.com/projects/esp-idf/en/v5.0/esp32c3/..., the ESP-IDF VS Code extension should have this doable with one button click.

Yep. It literally made our ESP-PROG connection obsolete, and gave us back all the pins we burned on our board for JTAG.
Thank you! Honestly, I didn't realize that.

I added a note to the Article.

I haven't followed QMK recently, but I assume someone is working on an ESP32 port, now that some chips have USB device support. I'm not sure what I'd do with a keyboard that has WiFi, but I'm sure cool (and non-nefarious) ideas will emerge.
I have one of the Wemos C3 pico boards which rely on the C3's native USB serial controller. The experience is pretty rough for quick iterations on a devboard on Windows.

You restart the board to programming mode by holding down the BOOT button down while pressing RESET. Wait a few seconds, then COM7 is available. You program the board, and then manually RESET the board with the button. COM7 disappears. Then you wait a few seconds, then COM6 appears. Oh, did you print some debug info on boot? Too bad, it takes a few seconds for the virtual serial port to appear in Windows so you just can't get input during that time because the reset resets the USB controller as well (the entire chip).

This is the benefit of on-board USB-UART chips: if you need to reset the chip, your USB controller doesn't need to be reset so your serial port stays open. Additionally, most ESP32 dev boards offer automatic reset by utilizing the DTR or RTS pins of the UART chip and a couple of transistors.

That has not been my experience at all, neither with a dev board (https://www.dfrobot.com/product-2566.html), nor with a custom PCB using the ESP32-C3-WROOM-02 module (https://www.mouser.com/ProductDetail/Espressif-Systems/ESP32...).

No button presses necessary (there are no buttons even, I have a slide switch on my PCB but almost never need to use it), everything resets automatically (except when it's in deep sleep, then I need to unplug it and plug it in again), I see log lines from the very first line in `app_main()`, etc.

I'm using a recent version of the ESP-IDF framework including all its tools (there is a VS Code extension that has a `Build, Flash and Monitor` button, I think all the operations are just run using the `idf.py` script, but not sure).

“ESP32-S2 Old version of the ESP32-S3. ESP32-S3 Low power. Dual-core. Wi-Fi and Bluetooth LE. 45 GPIOs. Camera Support. AI Support.”

That’s weird phrasing to say that the S2 is the older version, rather than the S3 is newer.

Also, the AI links to a GitHub for doing ML on all versions - exactly what is this “AI support”?

IMO the most interesting thing between the ESP32-Cx and ESP32-Sx is that the C is a RISC-V architecture

This guide was mainly intended for beginners like me who didn't know the ESP platform yet (like me a few months ago).

I'm also working on my writing skills. So forgive me for styling errors.

I know the ESP32-Cx is based on the RISC-V architecture. Could you elaborate why this is a feature or in what way this is an advantage?

You don't need xtensa toolchain and use whatever your distro ships for one.

A drawback is that ESP32 RISCV cores don't feature FPU, if I am remembering correctly.

I realized after posting that this is a personal blog, not a corporate one - so I do regret and apologize for being rather blunt.

(I think the .io and me misreading as “etherway” made me think it was company-published and for right or wrong I assume companies only ever blog for brand recognition, so am probably over critical of them)

That’s partly a big compliment - your blog is really well styled and easy to read.

RISC-V is a fairly popular topic on HN, and for me at least it’s really interesting as both a low-level nerd, as well as curiosity about what impact it may have given we lived in an x86 world for a long time, before ARM really took hold, and now that there’s a new player and it’s an open standard is really interesting.

Could it be the “Linux kernel” of the hardware world? I have probably 20x ESP8266s doing various things in my life, maybe 5x ESP32-Sx, and will probably pick up a few -Cx, and they’ll be the first RISC-V device I own.

Ah ok, I see. Although I don't fully comprehend what you are saying.

The main feature seems to be that it's an open architecture, so you don't have to rely on the things that a manufacturer provides you.

I also added your comparison table to the article.

And thank you for the compliment!

(comment deleted)
(comment deleted)
>I know the ESP32-Cx is based on the RISC-V architecture. Could you elaborate why this is a feature or in what way this is an advantage?

Long term support. As Espressif has publicly declared their intent to fully move to RISC-V, it is not in your interest long-term to base your designs on the ISA that's been deprecated.

I have been interested in Lilygo products does anyone have any experience using specific Lilygo esp32 boards?
I experimented with their TTGO LoRa boards and gave up out of frustration. That said, folks (including less technical) seem to have success with them for things like the meshtastic project, so they can’t be terrible. YMMV
I've been very happy with their esp32 boards. Easy, cheap, well integrated.

The only issue I've had is the battery charger circuit on some boards has a fuse instead of a diode making it a hazard (realized pretty quickly while testing). This is supposedly fixed on newer revisions but there's always a chance of getting an old one through some sources....

They have been quite good in my experience. I particularly like the T5 4.7 and 2.13 which include integrated e-paper displays.
I have used and deployed the ttgo lora boards. The boards are a bit cramped, soldering the headers requires you to remove the screen in order not to melt the ribbon cable (w I didnt try). But they work. Zero problems in the field but two out if 20~ died on my bench while just coding/out of nowhere. Furthermore, IIRC, the default i2c pins used in many libraries are used for lora/oled so you need to define two custom pins using TwoWire for example.
I used a couple for automated garage doors and I also build a little CDP/LLDP query tool to determine what switch port unlabeled Ethernet drops are connected to. The door openers are bulletproof and haven't had any issues with my tool either.
Is your CDP/LLDP hardware tool public?
They're hit or miss. I've used a few of their various boards successfully, but you usually wind up hunting down random libraries or having to tweak old code examples.

I wouldn't use them for my first foray into ESP32, but if you're fairly decent at debugging C, you'll probably be fine.

I built a clock with iCal support with the LILY Pi. Everything seemed to work, although I found it challenging to reproduce the example application, but once I did, things were fine. Eventually, I rearranged to build in Visual Studio with platform.io which I like a lot more; I feel there's more clarity than the Arduino IDE.

Currently I have one device at home, and a second in the field, which a friend is planning to use once I make some timezone adjustments (Google stopped providing vtimezone data for new calendars, apparently, so I need to get it somewhere else).

I want to build a game with - a wireless led (a 5-light length of a led strip would work) - a camera or other module to tell what color ball is in front of it

And a controller to change multiple of the wireless LED lights based on different cameras...

Is ESP32 suitable?

Esp32-cam has 4 available gpio pins (there are 2 more pins but one is used by SD card and one is connected to built-in flash) plus 2 uart pins. With narrow angle camera it costs around $6. Wide angle camera costs $4 or so. You need serial port to program it. There are some other limitations you'll only find when you start playing with it like DAC not working when wifi is on. So theoretically you can control 6 LEDs directly. On one 18650 battery it lasts 2 hours.

                  --------------
                 |    SDCARD    |
      5V        -|1           16|- 3V3
      GND       -|2   CAMERA  15|- GPIO_16 (useless, can't be used for anything)
    A GPIO_12   -|3           14|- GPIO_0, connect to GND during programming, used by camera, don't use!
    A GPIO_13   -|4           13|- GND
    A GPIO_15   -|5           12|- 3V3/5V
    A GPIO_14   -|6           11|- UART RX, GPIO_3
    A GPIO_2**  -|7           10|- UART TX, GPIO_1
    A GPIO_4*   -|8            9|- GND (weird, don't use)
                 |         LED  |
                  --------------
- A=analog input 0..4096

- GPIO_4 is connected to FLASH LED, if you want to use as input you need to desolder resistor R13 that goes to base of npn transistor

- GPIO_2 is HS2_DATA0 for SD card, it has 47k pullup

You may want to check out the ESP-EYE module.

https://www.espressif.com/en/products/devkits/esp-eye/overvi...

Any suggestions for remotely switching LEDs on and off within a system that can also read the camera.
You could use addressable RGB LEDs, like the WS2812B. You just need to supply power and a single IO line to control them so you don't need any external hardware like MOSFETs.

The ESP32 can read the camera, recognize objects/colors, and control the LEDs without any external systems.

So we want to build a simple game.

Light up one tube out of 10.

Ball needs to pass through tube.

Once the ball has gone through another tube lights up. Goto step 1...

More can be added to the game, but that's the starting basis.

How would I coordinate the various ESP32? I'd need a raspberry pi, no?

Ah ok I see.

Using ESP32s connected via Wifi and MQTT to a host (Pi or something) would be the easiest way I can think of to coordinate that.

You could also go without a host, by having the ESP with the ball randomly choose another and send the command to it, and connect them all together with ESP-NOW which is direct P2P communication.

I've never bought any hardware before but am a programmer, any shopping list you or anyone could provide would be appreciated. Canada.
There are some low cost kits with all necessary parts to start with microcontrollers, ESP32 included.

For example:

https://www.freenove.com/store.html

https://www.ebay.com/itm/304704446185

(no affiliation and never bought from them, just an example of what to look for)

If you never worked before with electronics, however, you'll probably also need some basic equipment to test things and/or add functions (say you want one more LED, or need to add/replace a capacitor, drive more current with an i/o line etc.).

Take also a look at the beginners section at the EeevBlog forums. It contains some good advice on how to set up a basic workbench: https://www.eevblog.com/forum/beginners/

The S3 also has RGB display support which is great for projects with a display.

The IPS version of this is my current favorite: https://www.aliexpress.us/item/3256804766379290.html

What does that mean? You can hook and RGB display up to pretty much any microcontroller, as far as I know.
Normally only if the display has its own controller, and you talk to it via SPI, i2c, or an 8 or 16 bit interface.

But those methods are slower and if you're doing a higher resolution user interface, the RGB interface lets you drive stuff like an 800x480 display at well over 60 fps.

For those looking for cheap dev boards, I've had good luck with 'HiLetgo' on Amazon. The WROOM-32S is my go-to, but I also use the WROOM-32U when I need an external antenna (it _must_ be connected) or the 32S+CAM module for the camera. I haven't gotten a DOA component yet.

The Ali prices aren't significantly cheaper than many of the sellers on Amazon (at least in small quantities), you don't have to wait a month, and if you get a dud, replacements are easy.

Even though I started with the 8266, as the article mentions, there's little reason to choose that outdated board at this point. It's worth the extra $1 to get the 32 in a DEV board configuration. Having the CP210x and USB onboard is also worth it for the hobbyist.

With a data point of 1, I had a bad HiLetgo ESP32 dev board, and I now avoid them.
I bought a bunch of them and also second their ease of use. Basically my go to board too, for simple stuff.
Amazon is giving me prices of $25-$35 for all the esp32, including the hitletgo you mentioned. Ali is $1.5-$2. Amazon also says 2+weeks deliver for many, Ali says 3 weeks. I'm in Canada
Digikey stocks Espressif boards for $8+ depending on the model.

No point in ordering random ones from Amazon IMO.

(comment deleted)
I ordered from ali, but this is good to know, thanks
Amazon seems to charge at least $25 for everything in Canada, even stuff I can get from the dollar store.
ESP32 dev kits are $8 on digikey, and directly from Espressif Systems: https://www.digikey.com/short/zz709bvv

The ESP32-C3 dev board is around $8 too, and the ESP32-S3 around $15 if you need tons of IO and an RGB interface.

Looks like the HiLetgo also has an ESP32 board with integrated LCD display. Boards with integrated displays I found to be very cool when beginning to play with. My "Hello World" was a graphical traffic light (bonus using the integrated buttons to simulate car-over-sensor or pedestrian hitting crossing button).
Many cases that don’t require Bluetooth I still find the 8266 worthwhile. Especially if you’re trying to build a product and BOM cost are being considered. The extra $1 doesn’t matter for hobbyists. Also I second the HiLetgo products, I have dozens of their products and it’s always good quality.
My new HomePod was delivered yesterday and while exploring I discovered HomeKit now has Matter support. I have a few ESP 32s lying around and wondered if I could connect them directly instead of bridging through ESPHome / Home Assistant. Apparently you can! Will be trying it out later: https://docs.espressif.com/projects/esp-matter/en/main/esp32...
It looks like that's Matter Wifi, though, rather than using the Thread protocol (which may be fine for your needs, I don't know much about Matter).
There's a really cool language for programming ESP32 which feels like crossbreed of Python and Ruby with smallest possible syntax for that semantics:

https://docs.toit.io/language/#toit-language-basics

Thank you for the mention!

I have been working on the Toit language for the ESP32 for a number of years now -- and it has been an enjoyable challenge to build an open source stack capable of supporting live reloading on a micro-controller that can run for years on batteries.

https://github.com/toitlang/toit

FYI the board the Toit website links to on Digikey is out of stock.
Thank you! I'll try to get that updated.
Can somebody tell me the difference between `ESP32-WROOM-02` and `ESP32-WROOM-02-H4`?
ESP32s are _sick_!

I've only been building things with Arduino Uno/Nano/Mega (clones) so far and they are kind of limited. Those ESP32 I've now got seem to have _everything_ onboard: lots of IO pins, hardware PWM (although I do not understand that fully yet), WiFi, Bluetooth, hall and temperature sensor onboard.

All of that for 8 Euro/piece. It's sick for IoT projects, really looking forward to doing more of that.

I've got these: https://www.amazon.de/dp/B074RGW2VQ

edit: I'd love if Arduino et. al. would start using USB-C plugs though. I've got everything from USB-A to micro USB around here and I'm constantly looking for the right cable to use a board. Does anybody know why they haven't switched to USB-C yet?

Shop around, there are boards that have USB-C connectors. I've seen some on Adafruit.
Thanks, I'll have a look around!
I suspect USB-C connectors just cost 5 cents more so they aren't used on most dirt cheap dev boards. I've seen adafruit update their stuff to USB-C but they also charge a good premium over the generic ebay clones.
Amusingly, the PWM output we do on our firmware is actually done using the RMT infrared remote control peripheral instead, as the LED strips we need to control are too fast for the internal PWM controller lol
I just had a quick glance at the PWM documentation but I don't fully grasp it anyway: I select one of the 16 internal PWM controllers, set it's clock/frequency and then bind an output pin to that.

I thought that fading a LED would then stick to the frequency of the PWM controllers, but it seems I still have to take care of the speed?

I thought setting the PWM frequency to 100 Hz and cycling my LED brightness from 1 to 100 would take 1 second. It doesn't work that way it seems?!?

Just got into IOT devices and I am using RP2040 boards(with wifi and without wifi, bluetooth is enabled now I think), what's the advantage of ESP32 to RP2040 these days? It's $4 ~ $6 a piece and also is solder-able to your base-board if you need make your own, it of course runs on its own without any base-board perfectly fine.
RP2040 itself definitely doesn't have WiFi or Bluetooth
Many of the boards you can buy have an ESP32 for wifi.

I quite like the separation between the two functions.

Compared to the ESP32-S3, the RP2040 doesn't have Wifi/BT, doesn't have an RGB display controller, has slower clocks, and has less RAM and Flash.

For most IoT devices the ESP32-S3 is overkill unless running a large display, and you could use the cheaper ESP32-C3, which has 1 core instead of 2, no RGB interface, and less GPIO. These run about $2 each for a solder-able module with built in antenna: https://www.digikey.com/short/cttthh0h

Or $6 for a dev board with USB built in: https://www.digikey.com/short/9rp1zbb3

I'd compare the RP2040 more to your classic STM32 arduino dev board, with the ESP series in another class above those.

The RP2040 chip doesn't have WiFi but the Pico-W board certainly does and we've used it:

https://www.adafruit.com/product/5526

Bluetooth support is supposed to be added in the next version of the SDK.

Interesting, to me that seems like a downside having external Wifi/BT over SPI
It could be an advantage if the rp2040 had a decent low power mode - then you could only turn on the wifi when you need it (eg data upload every few hours) and run for a year on battery. Alas it doesn't...

I think the main advantage (to some, in the current geopolitical climate) is that it's not Chinese.

Not being based out of China is good yeah.

The ESP series can disable wifi/bt entirely if needed, their low power sleep is pretty good. IIRC someone got a year or more out of a single 18650 cell doing very slow updates.

I use both. They're cheap as chips, so why not?

ESP32 doesn't have RP2040's PIO. It's just amazing, and can easily emulate RGB display controller or whatever you want it to. Even software HDMI with most CPU power still available. Thus bitbanging possibilities are endless, and this chip can sometimes replace an FPGA.

Pi Pico W boards also indeed have Wifi and recently bluetooth was enabled.

RP2040 also overclocks pretty easily, and people have pushed it even past 400 MHz. Wouldn't overclock in anything important, but for hobby projects — why not! It's about as fast per clock as dual core ESP32 (except for DIV & FPU math).

Both chips have their uses. For example ESP32 got HW FPU and integer division division, those can really help in some cases.

ESP32 also has pretty good Rust support https://github.com/esp-rs
Support for the ESP8266 I had sitting in my desk drawer is a little rough, the code templates they provide don't seem to work out of the box. I gave up and am just buying an ESP32. Should be a much better experience, I'm hoping.
A word of warning on this. It uses a custom fork of LLVM/Clang/Rust which adds support for a new architecture. The tooling that sets up this environment has failed in obscure ways each time I’ve attempted to set up and build one of their own hello world samples.
The llvm patches were up streamed a few weeks ago, so that should help significantly once it trickles into releases of the actual compilers.
S2 and C2 are not old versions of S3 and C3 (C2 isn't even released yet), they are just cut down/lower cost version (but also with some added features for low power operation).
Uups. You are right. Although, in my defence the S2 was released prior to the S3.

Corrected it.

If it's a guide maybe you should mention that the original ESP32 is still for sale and still faster than some of the newer alternatives. There is also a new faster risc-v based variant without wifi/bt that was recently presented called ESP32-P4.

All current variants: https://www.espressif.com/en/products/socs

What use case does the ESP32 have?

Wouldn't it be better to just recommend the S3, where there is currently only one version available?

There are like a dozen different versions for the ESP32.

"Two or one CPU core(s) with adjustable clock frequency, ranging from 80 MHz to 240 MHz"

In this case it seems to be the better choice to just use the ESP-S3 with better encryption support and support for Cameras.

Some projects don't work with the newer boards (wled for example).

Partly this is because the Esp sdks aren't as mature for the newer boards. This is very true for the brand new C6 series, but somewhat true for th S3 and C3 lines as well

You don’t always need the fastest CPUs and the richest peripheral set. Those things are detrimental when you need to save power.
I wish the BSP was more robust. You try much, it dies. E.g. open/close connections to an IoT server out there repeatedly. Or try to talk to two endpoints over network with any kind of bandwidth. Even the serial code is fragile.

It's good for proof-of-concept hobby projects. But on the job we've had to repair the BSP each time.

Could you elaborate what a BSP is?

I am only starting in the IOT Hardware World.

'Board Support Package'. The library that FreeRTOS links to or whatnot, custom to each board shipped (a board being, SOM on a little dev card etc)

They vary massively. Usually written in a sweatshop in the far east by students, pushed out and forgotten because they are table stakes but not a profit center.

They usually include support for board boot, threads, timers, and something that looks like networking.

I say 'looks like' because they are often paper-thin implementations of a familiar API, with little or nothing inside. No proper flow control; no dynamic anything. Not even thread-safe as a rule.

The problem with ESP8266 is that the toolchain is not updated anymore, so you will forever be stuck with GCC 5.2
On the other hand the RISC V ones are good for decades to come.
If you’re into e-paper check out this board based on ESP32-S3 from Lily Go. They also have a touch screen for it.

https://www.lilygo.cc/products/t5-4-7-inch-e-paper-v2-3

I’m working on a rust-based information display browser for it.

RIOT-OS has pretty good support for all of those btw

https://doc.riot-os.org/group__cpu__esp32.html

Thank you for posting the link. I've seen this, but lost the link.

Would you mind explaining what the advantage is over the ESP-IDF or the Arduino-SDK?

You are using a vendor agnostic API, so your code will also work on a e.g. a STM32 or nRF52.

e.g. the Bluetooth examples will run without modification on an nRF52 or ESP32 board.

This is great. I tried to spin up a small project over the Christmas break and got bogged down with so many options for buying an esp32 and then struggled working through the docs. I previously worked with an Arduino Uno years ago and that thing felt like it had a better UX for someone that is a real amateur when it comes to hardware. Glad to see a resource like this cut through the fog.
Thank you for the nice compliment. I have felt exactly the same way and that's why I've written this post.
https://shop.m5stack.com/products/atom-lite-esp32-developmen...

I cannot recommend the M5 stack highly enough. I did a lot of ESP32 programming for my LED art hobby projects from 2016-2020 and these are amazing.

I've been using Wemos and other various 8266 and ESP32 boards but recently picked up a M5StickC PLUS and i dont think I'll ever go back to those little standalone boards. Having everything in a nice little case with battery and most of the sensors i need, it is def a good way to go. Poked around with that FlowUI stuff and it was just too creepy to have to have my microcontroller connect to a server across the globe to program it, so a switched back to Arduino and using OTA.

The whole M5Stick ecosystem of addons it awesome too.

>M5StickC PLUS

I've been thinking about getting one but the I/O looks so anemic... Does it have extra pins on the inside or 3 GPIO's is all you get no matter what?

Yes, there's a grove connector for 3.3v on one end and more GPIO that can handle up to 5v. They have a lot of i/o on that particular device already allocated - there's a screen, a beeper, a microphone, IR and LED out, an RTC, and a 6-way motion detector, plus the buttons and a small (120mAh) battery with charging management hardware. If you are unhappy about having that much power and flexibility for under $20 you might be a little hard to please :-)

Larger units have 2, 3, or 6 grove connectors, plus a big library of pluggable peripherals.

My bad, I didn't notice the grove connector next to the usb port. I thought all you get is the few GPIO on the other side.
For those who want to start experimenting with a fully loaded device ready to go, the M5Stack Core2 is a great option because it includes a ~2-inch color touch screen, soft buttons, 16 MB flash and 8 MB PSRAM, a speaker with I2S amplifier, PDM microphone, 10 programmable LEDs, vibration motor, RTC, microSD slot, lithium battery, 6-axis IMU, M-Bus Socket, and Grove connector for $50 delivered.

https://www.amazon.com/dp/B08VGRZYJR

M5Stack makes a huge ecosystem of >100 add-on modules that snap onto the bottom of the Core2's form factor, including a wide range of sensors, LoRa & cellular radios, I/Os, interfaces, servo drivers, GPS, cameras, HMDI, RJ45, UWB, RFID, etc. It's quite a clever modular expansion system that makes prototyping (or just playing around) super easy.

https://shop.m5stack.com/collections/all-products/m5stack-co...

Note: I linked (and have) the AWS IoT Devkit version of the Core2 which comes with an upgraded battery module on the bottom vs the standard Core2 (a bit more Mah plus ten RGB LEDs built-in). It's also $10 cheaper than the base Core2 on Amazon thanks to AWS subsidy. The only difference is it comes with AWS Fire IoT Devkit firmware pre-flashed but it only takes a minute to flash it back to stock Core2 firmware.

Anyone have a recommendation for something that can take 2 USB in and be the USB device to 2 separate up stream systems? I’d like to build something can pass through a keyboard and mouse to 2 systems but also embed some hot key actions and the like so it always works regardless if my preferred OS install is configured and booted.
RaspberryPi can be both a USB host and a HID device. Sounds like a fun project!
I thought about a Pi running a RTOS but I couldn’t find a way to get it to be a HID device to two different computers at the same time.
The Teensy is very popular for acting as either USB host or peripheral and there's lots of projects to draw ideas and code from. The latest one only has 2 physical USB ports, so you would have to use a hub for your use case. I don't think you'll find a microcontroller with 4 physical ports anyway.

https://www.pjrc.com/store/teensy41.html

Hub for the inputs is fine but I think I'd need 3 physical ports in that case - 1 for the hub and 2 for the separate outs.

However... it just occurred to me I could connect 2 together for cross signaling over the other pins and have 2 in and 2 out that way.

Why not have two microcontrollers, and have them talk to one another over serial?

I've never heard of a microcontroller that provided the feature you're looking for, unfortunately.

You want 2 or more off CH9350 - HID mouse/keyboard to serial adapters - they are designed for exactly your application. Wire back-to-back and piggyback an ESP of your choice on the serial ports to eavesdrop/intercept/augment. Available from Ali.