credentials.h 281 B

123456789
  1. #ifndef CREDENTIALS_H
  2. #define CREDENTIALS_H
  3. // TODO: Make this load dynamically from flash, preferably with a way to
  4. // set it through the web browser such as https://github.com/zhouhan0126/WIFIMANAGER-ESP32
  5. extern const char* SSID;
  6. extern const char* WIFI_PASS;
  7. #endif