configuration.h 591 B

12345678910111213141516171819202122232425
  1. // Set these values to configure the wifi settings
  2. #define WIFI_ESSID ""
  3. #define WIFI_PASSWORD ""
  4. #define IP_ADDRESS ""
  5. #define GATEWAY ""
  6. #define NETMASK ""
  7. #define DNS_SERVER ""
  8. // Define the pins used to connect the rtc and display modules here
  9. #define DS3231_SDA_PIN
  10. #define DS3231_SCL_PIN
  11. #define TM1637_CLK_PIN
  12. #define TM1637_DIO_PIN
  13. #define BUTTON_INTERRUPT_PIN
  14. // Can be set from 0 to 7
  15. #define DISPLAY_BRIGHTNESS
  16. /* Define the local time zone in POSIX format as documented at
  17. * https://www.gnu.org/software/libc/manual/html_node/TZ-Variable.html
  18. */
  19. #define LOCAL_TIMEZONE ""