Finished Firmware for Vacum

This commit is contained in:
AlexanderHD27
2025-01-02 03:55:45 +01:00
parent ad61e7e9b7
commit 0bb125fad9
39 changed files with 1701 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
#include <stdio.h>
#include "pico/stdlib.h"
int main()
{
stdio_init_all();
while (true) {
printf("Hello, world!\n");
sleep_ms(1000);
}
}