After one day of thinking my 2 new Uno-Q's were bricked, I spent another day or so getting them to work. To save others some grief, I'll pass on what I've learned.
Since this is an Arduino forum, my first comments are directed to people familiar with "Arduinos" for some time. The Uno-Q development environment (App-Lab) is likely not what you are used to, nor expecting. It is a slow, complex, multi-layer process that hides way more from you than configuration scripts, libraries, and setups. It fundamentally is a full, linux-based system channeling most all your operations through the Qualcomm Dragonwing MCU. The more typical onboard Arduino microcontroller, the STM32U585, looks more like a vestigial appendage placed on board to convince you it can still drive an I2C bus via a QWIIC connector (almost oddly provided), and blink a LED to make users comfortable buying into this new board at nearly 10X the cost of an ESP32 module. Also, for all practical intents and purposes, you must have a working, configured Wifi connection available to bring up the UNO-Q. Do not believe otherwise.
My initial belief bringing up the UNO-Q came from no visible communications under any documented guise, with my laptop - a 7 core intel processor in an HP laptop, 3GHz, 16GB running Windows 11. The published specs on the UNO-Q said it needed a 5V 3A power supply to its USB C PD socket. My laptop provides a single USB C High Speed, 65W connection. I thought this should do the job, and it allowed me to avoid the typical USB A ports, usually limited to 0.8-1.0 Amp output. Upon connection the UNO-Q LEDs and animated matrix came alive but provided no communication via the App-Lab, or through tlc to the arduino-flasher-cli app-- nothing. Also, Device Manager showed no port available. Both of my UNO-Qs showed the same behavior. Multiple USB C cables were tried to no avail. All cables and ports were working (power and communication) with other Arduino boards.
I proceeded to equip the UNO-Q as a standalone processor, with display, keyboard and mouse. Once I brought the UNO-Q up it immediately tried to update over Wifi -- again, and again and again. I was finally able to see linux update, and App-Lab update to 1.28, even though I knew that 2.0 was available. I had to restart and re-load at least twice each time. After establishing the single board computer connection I was able to establish a Wifi connection from the PC to the UNO-Q with a manually loaded App-Lab 1.28. I could not establish a connection via the USB C port.
In the UNO-Q forum messages I learned of the incompatibility with some Apple USB C port. I tried learning more about the USB C PD port connections and protocol-- with all its revised complexities.
I experimentally tried a connection from a USB A port to the UNO-Q with a known good USB A to USB C cable... and I got the App-Lab on my PC to communicate with my UNO-Q without destroying the USB A port by over drawing current from the port! With that connection, I was able to successfully run the arduino-flasher-cli app and update the linux image on the UNO-Q . I suspect the chip used as the USB C PD interface has either some bugs or limitations.
I now had operational connections to the UNO-Q from my PC via Wifi, and USB.
If you come with a "traditional" Arduino point of view, you can load your Arduino apps (like the traditional Blink we know and love-- LED_BUILTIN == 50 [red} by the way) you can delete the .py entry in the App-Lab editor and copy your sketch in the sketch editor, hit RUN, and you can run your old Blink sketch on the STM32U585. There are no instructions as yet for library handling and updating. This product is in its infancy and needs more work. The editor is incomplete, not well documented, and does odd things (like highlight an entire window with control-A instead of just the code).
Remember the basic premise here is you will eventually be working with an advanced signal processor (Qualcomm's Dragonwing) and a different set of libraries (Arduino libs and Bricks) --presently all in their early stages of development. If you stay with the updates, ignore your frustrations, the progressive updates, bugs, and creeping documentation (assuming more to come) there could be some interesting opportunities with the UNO-Q. BUT... that time is NOT now.
Have fun! ![]()

