A microcontroller and a quad-core Linux processor on one Uno-shaped board. Guide coming once we have the hardware.
Coming soon. This guide has not been written yet - the board is not in the club’s hands. What follows is what the Uno Q is, why it is interesting, and what the tutorial will cover once we have one to write it against.
The Uno Q keeps the Uno’s outline and shield header and puts two completely different processors behind it. One is a microcontroller of the kind every other board on this page uses. The other is a quad-core application processor running Linux - a Raspberry Pi-class computer, on the same board, sharing the same pins.
Specifications are from Arduino’s announcement and have not been verified against hardware by anyone here.
Most interesting projects end up needing both halves of this. A microcontroller can hold a servo at an exact angle and sample a sensor on a precise interval, and cannot run a web app or a vision model. A Linux board can do both of those and cannot be trusted to toggle a pin at a predictable microsecond, because an operating system is scheduling it.
The usual answer is two boards and a serial link between them - which is exactly what our ESP32-CAM and Jetson Nano guides end up doing in different ways. The Uno Q puts both on one board with a shared toolchain, which is either a genuine simplification or a lot of complexity in a small space. That is the thing worth writing up honestly.
When we get hardware, this page becomes a real guide. Until then it is here so the board is on the list rather than forgotten.
In the meantime, the Arduino Uno and Raspberry Pi 3/4/5 tutorials cover the two halves separately, which is the setup this board is trying to replace.