Arduino/ESP8266-MQTT-Teufel-Subwoofer/ESP8266-MQTT-Teufel-Subwoofer.h.template

17 lines
416 B
Text
Raw Normal View History

2017-03-30 17:54:01 +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 = "TeufelSub";
2017-03-30 17:54:01 +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 = "teufelSub";
2017-03-30 17:54:01 +02:00
// MQTT topics
2017-09-26 00:11:17 +02:00
const char* mqtt_topic_power = "teufelSub/power";
const char* mqtt_topic_powerState = "teufelSub/powerState";