configuration.h 654 B

123456789101112131415161718192021222324252627282930
  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. #define BUZZER_PIN
  15. #define LEDC_DUTY
  16. #define ALARM_FREQUENCY
  17. // Can be set from 0 to 7
  18. #define DISPLAY_BRIGHTNESS
  19. /* Define the local time zone in POSIX format as documented at
  20. * https://www.gnu.org/software/libc/manual/html_node/TZ-Variable.html
  21. */
  22. #define LOCAL_TIMEZONE ""