mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-04 04:40:50 +00:00
fix formatting
This commit is contained in:
parent
dcb9125b32
commit
7f59e76c72
@ -989,16 +989,14 @@ void handleBlinkLED(HTTPRequest *req, HTTPResponse *res)
|
|||||||
|
|
||||||
if (blink_target == "LED") {
|
if (blink_target == "LED") {
|
||||||
uint8_t count = 10;
|
uint8_t count = 10;
|
||||||
while (count > 0)
|
while (count > 0) {
|
||||||
{
|
|
||||||
setLed(true);
|
setLed(true);
|
||||||
delay(50);
|
delay(50);
|
||||||
setLed(false);
|
setLed(false);
|
||||||
delay(50);
|
delay(50);
|
||||||
count = count - 1;
|
count = count - 1;
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
screen->blink();
|
screen->blink();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user