18 lines
540 B
Text
18 lines
540 B
Text
// WiFi configuration
|
|
const char* ssid = "http://kiel.freifunk.net/";
|
|
const char* password = "";
|
|
|
|
// OTA Hostname
|
|
const char* ota_hostname = "TeufelDS5";
|
|
|
|
// MQTT Broker
|
|
const char* mqtt_server = "broker.mqtt-dashboard.com";
|
|
|
|
// Device identification
|
|
const char* mqtt_device = "esp8266TeufelDS5"
|
|
|
|
// MQTT topics
|
|
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";
|