-
While trying to start pi pico development #include <stdio.h> int main() {
} Any tips? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Maybe try version 1.9.2, instead. |
Beta Was this translation helpful? Give feedback.
-
Many thanks Earl, Just do it the Arduino way is working. The Serial.print default to the pico USB. void setup() { void loop() { I hope Maxgerhardt will get the platform.io version done. |
Beta Was this translation helpful? Give feedback.
Many thanks Earl,
Just do it the Arduino way is working. The Serial.print default to the pico USB.
I did read a lot of other sites to start with the pi pico, very confusing.
void setup() {
Serial.begin(115200);
}
void loop() {
delay(3000);
Serial.printf("Core temperature: %2.1fC\n", analogReadTemp());
}
I hope Maxgerhardt will get the platform.io version done.
https://github.com/maxgerhardt/platform-raspberrypi