Skip to content

Commit

Permalink
needed other way
Browse files Browse the repository at this point in the history
  • Loading branch information
NachtRaveVL committed Jul 24, 2022
1 parent fe3390c commit e2ecd35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/FullSystem/FullSystem.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions examples/VerticalNFT/VerticalNFT.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit e2ecd35

Please sign in to comment.