25 lines
498 B
Text
25 lines
498 B
Text
// -------------------------------
|
|
// --- 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 = "<your SSID>";
|
|
|
|
// wifi password
|
|
char* password = "<your password>";
|
|
|
|
// --- other
|
|
const byte led = D1;
|
|
const byte button = D5;
|
|
|
|
#endif // ENV_H
|