// ------------------------------- // --- DasSchmalter enviroment --- // ------------------------------- // all user specific variables are defined here #ifndef ENV_H #define ENV_H // --- wifi //can be set to WIFI_MODE_MASTER so that the schmalter will emit its own wifi network #define WIFI_MODE_CLIENT // wifi ssid char* ssid = ""; // wifi password char* password = ""; // --- other const byte led = D1; const byte button = D5; #endif // ENV_H