Files
s23_time-attend-v2/Config.h
Marco Gallegos 06719b56a1 first commit
2025-12-24 16:57:32 -06:00

19 lines
309 B
C

#ifndef CONFIG_H
#define CONFIG_H
#include <Arduino.h>
#include <LittleFS.h>
#include <ArduinoJson.h>
struct Config {
char ssid[32];
char password[64];
char webhookUrl[256];
char deviceName[32];
};
void saveConfig(const Config& config);
bool loadConfig(Config& config);
#endif // CONFIG_H