esphome-doorbell
esphome-doorbell copied to clipboard
Remove "Doorbell" from entity names, change relay to a regular entity
Because of how Home Assistant creates entities from ESPHome devices, a sensor that in ESPHome is named "Doorbell chime active", when set up with a device simply called "Doorbell", will have its entity named "switch.doorbell_doorbell_chime_active", which is not ideal. By removing "Doorbell" as a prefix for these components, the naming convention inside HA works better.
Secondly, by making the relay component not internal, it can be used with automations for other things. One example is setting up a siren for the alarm integration, or a short beep to indicate something else is wrong, like a water leak sensor, or an AC turned on with an open window/door.
Came here for +1 the non-internal relay change. Would be great to simulate a button press to let the doorbell ring from another source.
For those who want to have a button in HA to trigger the doorbell, this might help:
button:
- platform: template
name: "Klingeln"
id: ring_button
icon: mdi:bell-ring
on_press:
- switch.turn_on: relay
- delay: 500ms
- switch.turn_off: relay