configuration.h 605 B

1234567891011121314151617181920212223
  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. // Can be set from 0 to 7
  14. #define DISPLAY_BRIGHTNESS
  15. /* Define the local time zone in POSIX format as documented at
  16. * https://www.gnu.org/software/libc/manual/html_node/TZ-Variable.html
  17. */
  18. #define LOCAL_TIMEZONE "CET-1CEST-2,M3.5.0/02:00:00,M10.5.0/03:00:00"