This repository has been archived on 2022-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
dasschmalter/Arduino/DasSchmalter/env.h.example

26 lines
498 B
Plaintext

// -------------------------------
// --- 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