2017-03-24 15:02:04 +01:00
|
|
|
// 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 = "BenQ";
|
|
|
|
|
2017-03-24 15:02:04 +01:00
|
|
|
// MQTT Broker
|
|
|
|
const char* mqtt_server = "broker.mqtt-dashboard.com";
|
|
|
|
|
|
|
|
// Device identification
|
2017-09-17 17:45:56 +02:00
|
|
|
const char* mqtt_device = "esp8266benq"
|
2017-03-24 15:02:04 +01:00
|
|
|
|
|
|
|
// MQTT topics
|
|
|
|
const char* mqtt_topic_power = "benq/power";
|
|
|
|
const char* mqtt_topic_lamptime = "benq/lamptime";
|