Update test cases

This commit is contained in:
Phillip Kühne 2025-02-09 20:16:54 +01:00
parent d1dd3a533f
commit 8a2e27f6f7
Signed by: phillip
GPG Key ID: E4C1C4D2F90902AA
2 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,7 @@ void loop() {
} }
delay(10); delay(10);
//Completely off //Completely off
dezibot.display.clear() dezibot.display.clear();
sleep(10); sleep(10);
//Completely on //Completely on
dezibot.display.invertColor(); dezibot.display.invertColor();

View File

@ -44,4 +44,5 @@ void handle_receive(String &message) {
void loop() { void loop() {
/* Continuously send to consume power on TX */ /* Continuously send to consume power on TX */
dezibot.communication.sendMessage("Power Test Message"); dezibot.communication.sendMessage("Power Test Message");
sleep(2);
} }