Skip to content

Commit

Permalink
Update DeviceFunctionsApp.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
cziter15 authored May 25, 2024
1 parent 809e2e2 commit ef98061
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/basic-config/src/apps/DeviceFunctionsApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ namespace apps
}

/* Start LED blinking on finished init. */
if (auto statusLed_sp{wifiLedWp.lock()})
statusLed_sp->setBlinking(500);
if (auto wifiLedSp{wifiLedWp.lock()})
wifiLedSp->setBlinking(500);

/* Application finished initialization, return true as it succedeed. */
return true;
Expand All @@ -52,4 +52,4 @@ namespace apps
*/
return ksApplication::loop();
}
}
}

0 comments on commit ef98061

Please sign in to comment.