Renamed mqtt rgb control

This commit is contained in:
Nis Wechselberg 2017-03-24 12:50:31 +01:00
parent aeef952908
commit e6c9adff81
3 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,15 @@
// WiFi configuration
const char* ssid = "http://kiel.freifunk.net/";
const char* password = "";
// MQTT Broker
const char* mqtt_server = "broker.mqtt-dashboard.com";
// Device identification
const char* mqtt_device_name = "esp8266client"
// 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";