Upload files to "/"

This commit is contained in:
2025-02-05 11:59:39 -05:00
parent 53d6badbdd
commit d53feeb2ba
3 changed files with 398 additions and 0 deletions

16
Basic.ino Normal file
View File

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