12 lines
196 B
C
12 lines
196 B
C
#include <stdio.h>
|
|
#include "pico/stdlib.h"
|
|
// #include "hardware/clocks.h"
|
|
|
|
|
|
int main() {
|
|
stdio_init_all();
|
|
while (true) {
|
|
sleep_ms(1000);
|
|
printf("One Second\n");
|
|
}
|
|
}
|