From 52d8476b91bc0bc506711a78ec4e2ff75ef61dff Mon Sep 17 00:00:00 2001 From: Hary Ayala Date: Sat, 11 Apr 2020 01:58:42 -0600 Subject: [PATCH] Adding MQTT information to software Install document. --- Software_Installation.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Software_Installation.md b/Software_Installation.md index 417aec9..84aea24 100644 --- a/Software_Installation.md +++ b/Software_Installation.md @@ -71,8 +71,12 @@ For beginners I would recommend watching this setup tutorial below. // Wi-Fi network to connect to (if not in AP mode) char* ssid = "your-ssid"; char* password = "your-password"; + + // MQTT user / password + const char* mqttUser = "your-mqtt-user"; + const char* mqttPassword = "your-mqtt-password"; ``` - + ![](software_screenshots/secret.png?raw=true) 5. Configure the parameters @@ -107,7 +111,12 @@ For beginners I would recommend watching this setup tutorial below. ![](software_screenshots/alexa_config.png?raw=true) +7. (Optional) Configure MQTT +- Installation of "PubSubClient" and "ArduinoJson" libraries required +- Requires `ENABLE_MQTT_SUPPORT` +- It's preconfigured for Home Assistant Mosquitto MQTT service +- Enables sync with home assistant and from there to Google Assistant ## 3. Upload