1.2-legacy
Charles Crossan 2020-12-20 21:47:46 -05:00
rodzic dcb9125b32
commit 7f59e76c72
1 zmienionych plików z 8 dodań i 10 usunięć

Wyświetl plik

@ -979,27 +979,25 @@ void handleBlinkLED(HTTPRequest *req, HTTPResponse *res)
res->setHeader("Content-Type", "application/json");
ResourceParameters *params = req->getParams();
std::string blink_target;
std::string blink_target;
if (! params->getQueryParameter("blink_target", blink_target)) {
// if no blink_target was supplied in the URL parameters of the
if (!params->getQueryParameter("blink_target", blink_target)) {
// if no blink_target was supplied in the URL parameters of the
// POST request, then assume we should blink the LED
blink_target = "LED";
blink_target = "LED";
}
if (blink_target == "LED" ) {
if (blink_target == "LED") {
uint8_t count = 10;
while (count > 0)
{
while (count > 0) {
setLed(true);
delay(50);
setLed(false);
delay(50);
count = count - 1;
}
}
else {
screen->blink();
} else {
screen->blink();
}
res->println("{");