picoco/templates/main.c.tpl
2025-02-19 11:22:12 +01:00

12 lines
178 B
Smarty

#include <stdio.h>
#include <pico/stdlib.h>
int main()
{
stdio_init_all();
while (true) {
printf("<prog_name> is running...\n");
sleep_ms(1000);
}
}