2017-09-17 16:54:50 +02:00
|
|
|
// WiFi configuration
|
|
|
|
const char* ssid = "http://kiel.freifunk.net/";
|
|
|
|
const char* password = "";
|
|
|
|
|
2017-09-26 00:11:17 +02:00
|
|
|
// OTA Hostname
|
|
|
|
const char* ota_hostname = "TeufelDS5";
|
|
|
|
|
2017-09-17 16:54:50 +02:00
|
|
|
// MQTT Broker
|
|
|
|
const char* mqtt_server = "broker.mqtt-dashboard.com";
|
|
|
|
|
|
|
|
// Device identification
|
2017-09-26 00:11:17 +02:00
|
|
|
const char* mqtt_device = "esp8266TeufelDS5"
|
2017-09-17 16:54:50 +02:00
|
|
|
|
|
|
|
// MQTT topics
|
2017-09-26 00:11:17 +02:00
|
|
|
const char* mqtt_topic_command = "teufelds5/command";
|
|
|
|
const char* mqtt_topic_volume = "teufelds5/volume";
|
|
|
|
const char* mqtt_topic_powerState = "teufelds5/powerState";
|
|
|
|
const char* mqtt_topic_volumeState = "teufelds5/volumeState";
|