With the PoweronState Automation, the leading / in the topic causes it to fail. Also, the SetOption19 Automation to turn on Discovery only works if Discovery is OFF and the default topic is still cmnd/sonoffs/state. Setting Option 19 on automatically changes the topic to sonoffs/cmnd

DavidFW1960 2018-12-28 14:07:44 +11:00
parent bce0666f1c
commit bbaa9c92eb
1 changed files with 2 additions and 2 deletions

@ -92,7 +92,7 @@ Note2: After changing `entity_id` Hass must be restarted, this will be fixed in
### Tip: Make all Tasmota devices be automatically discovered
If you want all your devices to be found by Home Assistant, add an automation which will enable `SetOption19` for all devices.\
The automation below will be triggered each time Hass is (re)started and can also be triggered manually through the UI
The automation below will be triggered each time Hass is (re)started and can also be triggered manually through the UI (Note: if Discovery is already on, change the topic to "sonoffs/cmnd/SetOption19")
```yaml
# Example automations.yaml entry
@ -122,6 +122,6 @@ Use this automation to get all your (auto discovered) devices in sync, including
action:
- service: mqtt.publish
data:
topic: "/sonoffs/cmnd/state"
topic: "sonoffs/cmnd/state"
payload: ""
```