Arduino/ESP8266-MQTT-RGBControl/ESP8266-MQTT-RGBControl.h.template

23 lines
770 B
Text
Raw Normal View History

// WiFi configuration
const char* ssid = "http://kiel.freifunk.net/";
const char* password = "";
2017-09-26 00:11:17 +02:00
// OTA Hostname
const char* ota_hostname = "RGBControl";
// MQTT Broker
const char* mqtt_server = "broker.mqtt-dashboard.com";
// Device identification
2017-09-26 00:11:17 +02:00
const char* mqtt_device = "esp8266RGBControl"
// MQTT topics
2017-09-26 00:11:17 +02:00
const char* mqtt_topic_power = "RGBControl/power";
const char* mqtt_topic_powerState = "RGBControl/powerState";
const char* mqtt_topic_color = "RGBControl/color";
const char* mqtt_topic_colorState = "RGBControl/colorState";
const char* mqtt_topic_breathe = "RGBControl/breathe";
const char* mqtt_topic_breatheState = "RGBControl/breatheState";
const char* mqtt_topic_cycle = "RGBControl/cycle";
const char* mqtt_topic_cycleState = "RGBControl/cycleState";