setup projet

ajout de l'updater et du wifimanager
This commit is contained in:
2026-06-08 12:37:30 +02:00
parent 22a0eec84d
commit 204cdef7d7
6 changed files with 97 additions and 10 deletions
+2 -10
View File
@@ -1,18 +1,10 @@
#include <Arduino.h>
// put function declarations here:
int myFunction(int, int);
#include "updater.h"
#include "wifiManager.h"
void setup() {
// put your setup code here, to run once:
int result = myFunction(2, 3);
}
void loop() {
// put your main code here, to run repeatedly:
}
// put function definitions here:
int myFunction(int x, int y) {
return x + y;
}