17 lines
281 B
C
17 lines
281 B
C
|
|
#include "pico/stdlib.h"
|
||
|
|
#include "hardware/uart.h"
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
// Initialize stdio with USB support
|
||
|
|
stdio_init_all();
|
||
|
|
|
||
|
|
// Delay to allow USB connection setup
|
||
|
|
sleep_ms(2000);
|
||
|
|
|
||
|
|
while (true) {
|
||
|
|
printf("Hello, World!\n");
|
||
|
|
sleep_ms(1000);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|