diff --git a/examples/basic-config/src/apps/DeviceFunctionsApp.h b/examples/basic-config/src/apps/DeviceFunctionsApp.h index d90a882..f219a33 100644 --- a/examples/basic-config/src/apps/DeviceFunctionsApp.h +++ b/examples/basic-config/src/apps/DeviceFunctionsApp.h @@ -8,7 +8,7 @@ namespace apps { protected: - std::weak_ptr wifiLedWp; // Weeak pointer to WiFi status LED component. + std::weak_ptr connectionStatusLedWp; // Weeak pointer to the status LED component. std::weak_ptr mqttConnWp; // Weeak pointer to MQTT component. std::unique_ptr connEventHandleSp, disEventHandleSp; // Handles to MQTT events. @@ -20,4 +20,4 @@ namespace apps bool init() override; bool loop() override; }; -} \ No newline at end of file +}