Update to include MQTT configuration (#4218)

* Update to incluse MQTT configuration

Details support for MQTT as of firmware 1.17

* Fixes
This commit is contained in:
Mike 2017-12-15 16:34:21 -05:00 committed by Fabian Affolter
parent b064441866
commit 0e638d5f65

View File

@ -98,3 +98,17 @@ logbook:
- sensor.garage_door_time_in_state
- sensor.garage_door_wifi_signal_strength
```
As of firmware release 1.17 the garadget device has native support for MQTT. The options allow the end-user to configure the device in the following ways 'cloud only', 'cloud and MQTT' or 'MQTT only'.
For configuration of the garadget as a MQTT cover:
```yaml
cover:
- platform: mqtt
name: "Garage Door"
command_topic: "garadget/device_name/command"
state_topic: "garadget/device_name/status"
payload_open: "open"
payload_close: "close"
```