Files
2025-02-05 12:01:09 -05:00

17 lines
240 B
C++

#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);
}
}