Homeasssistant High Temperature alert

Hi

I have a number of Govee Bluetooth temperature gauges scattered around the house and at least one room ie. my lab gets pretty hot during the summer months. Is there anyway I can get HA to alert me via alexa that a certain temperature has been reached and that I should either take appropriate action or get the fans turn on automatically.

Thanks all

I don’t know if this can be done via a voice assistant but in case it is of interest I do the same thing but the alert is sent to my phone or via email:

Alert configuration (from alert.yaml file):

temp_high:
  name: "Temperature High"
  title: "**Alert** - Temperature high detected at {{ states('sensor.time') }}"
  message:
    "Triggered by {{ expand('binary_sensor.high_temp_alarm') | selectattr('state','eq','on') |
    map(attribute='name') | list | join(', ') }}, check for equipment over-heating."
  entity_id: binary_sensor.high_temp_alarm
  state: "on"
  repeat: 60
  can_acknowledge: true
  skip_first: false
  notifiers:
    - alert_group

Group helper for binary_sensor.high_temp_alarm:

In addition you just need to setup a suitable notifier.

Hope that’s useful!

1 Like