22 lines
770 B
Text
22 lines
770 B
Text
// WiFi configuration
|
|
const char* ssid = "http://kiel.freifunk.net/";
|
|
const char* password = "";
|
|
|
|
// OTA Hostname
|
|
const char* ota_hostname = "RGBControl";
|
|
|
|
// MQTT Broker
|
|
const char* mqtt_server = "broker.mqtt-dashboard.com";
|
|
|
|
// Device identification
|
|
const char* mqtt_device = "esp8266RGBControl"
|
|
|
|
// MQTT topics
|
|
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";
|