Conversation
Doesn't seem to be our problem. I noticed about a bunch of complaints about the App Lab proprietary software and the Uno Q board on Arduino forums. It looks like a lot of redit users got all fired up too, but I'm not re-posting that doom scroll. If Arduino (Qualcomm) doesn't consider community feedback from the Uno Q roll out, then there might be an inevitable maker community exodus toward alternatives (probably PlatformIO + Zephyr project). But simplicity like the Arduino IDE experience is hard to find in alternatives. |
2bndy5
left a comment
There was a problem hiding this comment.
What version of Python is running in the app lab?
If app lab is not using a venv for each project
python3 --version
Co-authored-by: Brendan <2bndy5@gmail.com>
Co-authored-by: Brendan <2bndy5@gmail.com>
|
I think it runs a venv for each project inside a docker container.
Python 3.13.5 |
|
Yikes! Using a docker container seems like overkill (especially for a SBC) if they want to protect the Linux system assets. Do you have to run App Lab with root privileges? This invokes so many other questions about using bricks. And I thought I over-thought things, damn. |
|
No, root privileges are not required. Turns out you can't just do things like create or access a TUN interface either, so that pretty much rules out any RF24Gateway like behavior too. |
|
Yea, I just saw your arduino forums thread. Does app lab allow you to add custom args when running the docker container? If so, I suspect you could forward network ports into the docker container. |
This comment was marked as outdated.
This comment was marked as outdated.
App lab is pretty sparse for options etc. I was trying to figure out a way to run docker with CAP_NET_ADMIN privileges but still haven't figured out if its possible. |
Hi @TMRh20. I have notified the Arduino App Lab developers of the incorrect handling of the Note that the Arduino App Lab Serial Monitor does handle CRLF line endings (which is what is used by |
| radio.encodeRadioDetails(encoded_details); | ||
| Monitor.println(F("\nhexadecimal dump of all registers:")); | ||
| for (int i = 0; i < 43; i++) { | ||
| Bridge.call("RF24Callback", encoded_details[i]); |
There was a problem hiding this comment.
Something seems to have changed with the Q lately.
Running this example now results in what seems to be a hang of the MCU.
Changing this line to Bridge.notify("RF24Callback", encoded_details[i]); seems to work around the issue, but requires also adding a delay, because the notify function doesn't wait for an ACK.
I'm not sure if I want to change this right away or what. The google AI results indicate this is a 'known issue' and the same Bridge.call function seems to work in my advanced example at https://github.com/TMRh20/Sketches/tree/master/ArduinoQ/rf24-advanced-interaction
I think it might be best to wait to see if these Bridge issues are resolved before making more changes. Its not an RF24 issue, but some sort of timing issue or something it seems with the Q.
I don't like this board much after working with it now for over a month... I think the Raspberry Pi has it beat by many miles.
There was a problem hiding this comment.
Maybe that example just needs to wait until the bridge is ready. I found an example in Arduino forums. The solution seems similar to waiting for while (!Serial); before emitting output.
There was a problem hiding this comment.
I'll have to try that out later! Thanks for the tip!
There was a problem hiding this comment.
Well I tried the workaround in that thread:
while(!start)
{
Bridge.call("linux_started").result(start);
}
It just seems to hang on this call, never syncing. IMHO the Uno Q has now reached the level of hokey and almost unusable.


Adding preliminary example for Arduino Uno Q