config.hpp 276 B

1234567891011121314151617181920
  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. #include <inttypes.h>
  4. #include <Arduino.h>
  5. #include <avr/wdt.h>
  6. #include <EEPROM.h>
  7. struct config_t {
  8. char ssid[32];
  9. char pass[32];
  10. char host[24];
  11. int port;
  12. };
  13. extern config_t config;
  14. void config_init();
  15. void config_save();
  16. #endif