empty project

This commit is contained in:
2024-02-04 21:33:30 +03:00
commit f4048936da
10 changed files with 447 additions and 0 deletions

14
ValveController.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include <stdio.h>
#include "pico/stdlib.h"
int main()
{
stdio_init_all();
puts("Hello, world!");
return 0;
}