Initial commit

This commit is contained in:
Riyyi
2025-05-10 19:59:47 +02:00
commit 364733cbba
17 changed files with 485 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
.PHONY: server server-log server-run client client-log client-run
server:
@-cd server ; \
platformio run --target upload ; \
cd ..
server-log:
@-cd server ; \
platformio device monitor ; \
cd ..
server-run:
@-cd server ; \
platformio run --target upload ; \
platformio device monitor ; \
cd ..
client:
@-cd client ; \
platformio run --target upload ; \
cd ..
client-log:
@-cd client ; \
platformio device monitor ; \
cd ..
client-run:
@-cd client ; \
platformio run --target upload ; \
platformio device monitor ; \
cd ..