mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-20 09:43:03 +00:00
implement screen blink
This commit is contained in:
@@ -986,14 +986,16 @@ void handleBlinkLED(HTTPRequest *req, HTTPResponse *res)
|
||||
|
||||
uint8_t count = 10;
|
||||
|
||||
while (count > 0)
|
||||
/*while (count > 0)
|
||||
{
|
||||
setLed(true);
|
||||
delay(50);
|
||||
setLed(false);
|
||||
delay(50);
|
||||
count = count - 1;
|
||||
}
|
||||
}*/
|
||||
|
||||
screen->blink();
|
||||
}
|
||||
|
||||
void handleScanNetworks(HTTPRequest *req, HTTPResponse *res)
|
||||
|
||||
Reference in New Issue
Block a user