diff --git a/examples/FullSystem/FullSystem.ino b/examples/FullSystem/FullSystem.ino index 17df546..e992f2a 100644 --- a/examples/FullSystem/FullSystem.ino +++ b/examples/FullSystem/FullSystem.ino @@ -56,7 +56,7 @@ void setup() { Serial.begin(115200); // Begin USB Serial interface while(!Serial) { ; } // Wait for USB Serial to connect (remove in production) #endif - #ifdef SETUP_ENABLE_WIFI + #if SETUP_ENABLE_WIFI String wifiSSID = F(SETUP_WIFI_SSID); String wifiPassword = F(SETUP_WIFI_SSID); #endif diff --git a/examples/VerticalNFT/VerticalNFT.ino b/examples/VerticalNFT/VerticalNFT.ino index 4746d83..bcd69af 100644 --- a/examples/VerticalNFT/VerticalNFT.ino +++ b/examples/VerticalNFT/VerticalNFT.ino @@ -97,7 +97,7 @@ void setup() { Serial.begin(115200); // Begin USB Serial interface while(!Serial) { ; } // Wait for USB Serial to connect (remove in production) #endif - #ifdef SETUP_ENABLE_WIFI + #if SETUP_ENABLE_WIFI String wifiSSID = F(SETUP_WIFI_SSID); String wifiPassword = F(SETUP_WIFI_SSID); #endif @@ -137,9 +137,8 @@ void setup() { hydroController.enableDataPublishingToSDCard(F(SETUP_DATA_FILE_PREFIX)); #endif - // TODO: Object setup + // TODO: Object setup from above defines } - // TODO: UI initialization, other setup options