search
[last update: 2026-07-21]
Arduino boards
Uno-Q home page
-----
On This Page:
---------------------------------------------------------
-----
-----
--------------------------------------
When you execute code on an Uno Q, the process divides into specific layers:
Compilation: The App Lab IDE compiles your Python, JavaScript, or C++ project into actionable bytecode or binaries.
https://www.youtube.com/watch?v=PZCBLSR4GCY
The Hardware Bridge: Your logic is split. High-level processing (like web serving, AI, or data APIs) is executed on the Qualcomm Dragon Wing QRB 2210 System-on-Chip (running Debian Linux).
Precise hardware controls (like reading analog sensors or driving motors) are sent via UART to the dedicated microcontroller
Direct Execution: The Linux layer runs code either as standard background scripts or inside pre-bundled Docker containers.
The microcontroller directly executes your low-latency instructions"
--------------------------------------
I also have found another possible option.
On my Linux laptop, which also runs XFCE, I have a battery icon in the panel. If you click it, there is a slider switch for presentation mode.
The thing is, this applet is not installed on the UNO Q, but it can be installed with:
sudo apt install xfce4-power-manager
After that:
right-click the panel and click Panel Preferences
click on the Items tab
click the +Add button near the bottom
a list of plugins will appear. Select Power Manager and the battery icon will be added to the panel
close the list of plugins. The Power Manager applet can then be selected and optionally moved to whatever position on the panel is preferred
When the battery is clicked, the Presentation Mode switch should appear. This option might be more convenient than entering commands at the terminal, although I haven't tested it yet.
--------------------------------------
# Run a simple command (e.g., 'ls -l' on Unix or 'dir' on Windows)
result = subprocess.run(["ls", "-l"])
# Check the exit code (0 means success)
print("Exit code:", result.returncode)
--------------------------------------
--------------------------------------
Restart the Docker daemon by running sudo service docker restart.
failed "control process exited with error code"
"see 'systemctl status docker.service'
and 'journalctl -xeu docker.service' for details."
(link to:) stackoverflow forum post
and restart the docker service:
sudo service docker restart
----------
----------
--------------------------------------