Added draft of Aten switcher

This commit is contained in:
Nis Wechselberg 2021-08-01 11:25:25 +02:00
parent ec7dacbbc4
commit f2c95ed630
2 changed files with 17 additions and 0 deletions

1
ESP8266-MQTT-Aten-MagicBox/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
ESP8266-MQTT-Aten-MagicBox.h

View file

@ -0,0 +1,16 @@
// 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";