16 lines
416 B
Text
16 lines
416 B
Text
// WiFi configuration
|
|
const char* ssid = "http://kiel.freifunk.net/";
|
|
const char* password = "";
|
|
|
|
// OTA Hostname
|
|
const char* ota_hostname = "TeufelSub";
|
|
|
|
// MQTT Broker
|
|
const char* mqtt_server = "broker.mqtt-dashboard.com";
|
|
|
|
// Device identification
|
|
const char* mqtt_device = "teufelSub";
|
|
|
|
// MQTT topics
|
|
const char* mqtt_topic_power = "teufelSub/power";
|
|
const char* mqtt_topic_powerState = "teufelSub/powerState";
|