2017-03-30 17:54:01 +02:00
|
|
|
// WiFi configuration
|
|
|
|
const char* ssid = "http://kiel.freifunk.net/";
|
|
|
|
const char* password = "";
|
|
|
|
|
|
|
|
// MQTT Broker
|
|
|
|
const char* mqtt_server = "broker.mqtt-dashboard.com";
|
|
|
|
|
|
|
|
// Device identification
|
2017-09-17 17:50:44 +02:00
|
|
|
const char* mqtt_device = "livingroom/teufelSub";
|
2017-03-30 17:54:01 +02:00
|
|
|
|
|
|
|
// MQTT topics
|
2017-09-17 17:44:18 +02:00
|
|
|
const char* mqtt_topic_power = "livingroom/teufelSub/power";
|
|
|
|
const char* mqtt_topic_powerState = "livingroom/teufelSub/powerState";
|