update structure des dossiers, init

This commit is contained in:
Maxime Gillespie
2025-02-05 12:01:09 -05:00
parent d53feeb2ba
commit e7de56b8ee
3 changed files with 16 additions and 16 deletions

View File

@@ -1,16 +1,16 @@
#include <ES32A08.h> #include <ES32A08.h>
ES32A08 board; ES32A08 board;
void setup() { void setup() {
board.begin(); board.begin();
board.setPWRLED(true); board.setPWRLED(true);
board.setRelay(1, true); board.setRelay(1, true);
board.display("INIT"); board.display("INIT");
} }
void loop() { void loop() {
if (board.readButton(1)) { if (board.readButton(1)) {
board.display(1234); board.display(1234);
} }
} }