sforkowany z mirror/meshtastic-firmware
fix formatting
rodzic
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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue