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
|
|
|
|
2017-09-26 00:11:17 +02:00
|
|
|
// OTA Hostname
|
|
|
|
const char* ota_hostname = "RGBControl";
|
|
|
|
|
2017-03-14 00:52:46 +01:00
|
|
|
// 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"
|
2017-03-14 00:52:46 +01:00
|
|
|
|
|
|
|
// 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";
|