Adding MQTT information to software Install document.
This commit is contained in:
@ -71,6 +71,10 @@ For beginners I would recommend watching this setup tutorial below.
|
|||||||
// Wi-Fi network to connect to (if not in AP mode)
|
// Wi-Fi network to connect to (if not in AP mode)
|
||||||
char* ssid = "your-ssid";
|
char* ssid = "your-ssid";
|
||||||
char* password = "your-password";
|
char* password = "your-password";
|
||||||
|
|
||||||
|
// MQTT user / password
|
||||||
|
const char* mqttUser = "your-mqtt-user";
|
||||||
|
const char* mqttPassword = "your-mqtt-password";
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
@ -107,7 +111,12 @@ For beginners I would recommend watching this setup tutorial below.
|
|||||||

|

|
||||||
|
|
||||||
|
|
||||||
|
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
|
## 3. Upload
|
||||||
|
Reference in New Issue
Block a user