Hi all,
Need a little help with getting my doorbell to work with HA.
So once I subscribe to the topic in the config file I see the output in the HA debug log -
2020-10-27 21:43:40 DEBUG (MainThread) [homeassistant.components.mqtt] Received message on rflink/Aster-00f4: b'{"SWITCH":"01","CMD":"ON","SWITCH01":"ON"}'
/config/configuration.yaml
sensor:
- platform: mqtt
name: "doorbell"
state_topic: "rflink/Aster-00f4"
I created automation but it doesn’t get triggered
/config/automations.yaml
#################################################################
## Doorbell automation
#################################################################
- alias: Doorbell ringing
trigger:
platform: mqtt
topic: rflink/Aster-00f4
payload: 'SWITCH":"01","CMD":"ON","SWITCH01":"ON'
action:
- service: notify.pushover
data:
title: "There is someone at the door!"
message: "Doorbell!!!"
i also set the payload to “ON” but that didn’t work either