1234567891011121314151617181920 |
- #ifndef CONFIG_H
- #define CONFIG_H
- #include <inttypes.h>
- #include <Arduino.h>
- #include <avr/wdt.h>
- #include <EEPROM.h>
- struct config_t {
- char ssid[32];
- char pass[32];
- char host[24];
- int port;
- };
- extern config_t config;
- void config_init();
- void config_save();
- #endif
|