Added first version of mqtt based benq controller board

This commit is contained in:
Nis Wechselberg 2017-03-24 15:02:04 +01:00
parent 552b676ed0
commit dff4191572
3 changed files with 187 additions and 0 deletions

View file

@ -0,0 +1,13 @@
// 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 = "esp8266benq"
// MQTT topics
const char* mqtt_topic_power = "benq/power";
const char* mqtt_topic_lamptime = "benq/lamptime";