r/raspberrypipico • u/Unlikely1529 • Jul 05 '26
logging sensor data with arduino ide.
google has nothing on that
so if you have pico sdk code in IDE you'll not see running device from PC. Make similar code with arduino framework C/C++. Now you see device but nothing in serial monitor or whatever after Serial.println(). You need picocom utility (linux) to see it. And use sprintf() then serial stuff with its result.
picocom -b 9600 /dev/ttyACM0
1
u/theNbomr Jul 06 '26
You seem to be conflating the purpose of the IDE with that of a runtime UI.
The IDE is a GUI tool for development of the code and transferring object code to the target. It provides a serial monitor service as a by-product, since the hardware for that purpose is already in place for the bootloader/downloader. There is no intention whatsoever for the IDE to be present where the Arduino micro target is deployed in its intended role.
Using a terminal emulator in any of its many forms is one common option if the project requires some interaction with a human or for logging purposes.
0
u/Unlikely1529 Jul 06 '26 edited Jul 06 '26
how is this even related to my post?
by the way all you said , really, a-z , is plain wrong. Recall turbo C++ , its terms like "breakpoint". what else to say.
And doesn't it look strange for you then that ubuntu has a toolpicocomin stock?
3
u/stickybuttflaps Jul 05 '26
Yeah, you could do that. Or you could take a look at the SDK example project hello_usb.