16 lines
357 B
Text
16 lines
357 B
Text
// WiFi configuration
|
|
const char* ssid = "";
|
|
const char* password = "";
|
|
|
|
// OTA Hostname
|
|
const char* ota_hostname = "AtenMagicBox";
|
|
|
|
// MQTT Broker
|
|
const char* mqtt_server = "";
|
|
|
|
// Device identification
|
|
const char* mqtt_device = "esp8266aten";
|
|
|
|
// MQTT topics
|
|
const char* mqtt_topic_power = "aten/power";
|
|
const char* mqtt_topic_lamptime = "aten/lamptime";
|