Added draft of Aten switcher
This commit is contained in:
parent
ec7dacbbc4
commit
f2c95ed630
2 changed files with 17 additions and 0 deletions
1
ESP8266-MQTT-Aten-MagicBox/.gitignore
vendored
Normal file
1
ESP8266-MQTT-Aten-MagicBox/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
ESP8266-MQTT-Aten-MagicBox.h
|
|
@ -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";
|
Loading…
Reference in a new issue