2017-03-13 08:30:48 +01:00
|
|
|
// WiFi configuration
|
|
|
|
const char* ssid = "http://kiel.freifunk.net/";
|
|
|
|
const char* password = "";
|
2017-03-14 00:52:46 +01:00
|
|
|
|
|
|
|
// MQTT Broker
|
|
|
|
const char* mqtt_server = "broker.mqtt-dashboard.com";
|
|
|
|
|
|
|
|
// Device identification
|
2017-09-17 17:50:44 +02:00
|
|
|
const char* mqtt_device = "esp8266client"
|
2017-03-14 00:52:46 +01:00
|
|
|
|
|
|
|
// MQTT topics
|
|
|
|
const char* mqtt_topic_power = "esp8266client/power";
|
|
|
|
const char* mqtt_topic_color = "esp8266client/color";
|
|
|
|
const char* mqtt_topic_breathe = "esp8266client/breathe";
|
|
|
|
const char* mqtt_topic_cycle = "esp8266client/cycle";
|