Progress on mqtt connection for esp8266 rgb strips

This commit is contained in:
Nis Wechselberg 2017-03-14 00:52:46 +01:00
parent 57de764ed1
commit 6cd9483290
2 changed files with 108 additions and 63 deletions

View file

@ -1,3 +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";