Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temperature sensors as alarms #1114

Open
2 tasks done
RoboKaren opened this issue Feb 9, 2025 · 3 comments
Open
2 tasks done

Temperature sensors as alarms #1114

RoboKaren opened this issue Feb 9, 2025 · 3 comments

Comments

@RoboKaren
Copy link

Checklist

  • I checked for similar existing requests (both open and closed) before posting.
  • My request is generic, other users may benefit from it too.

Proposal

[It'd be great if Alarmo had [tempreature] added as an environmental sensor as well. I appreciate the leak detection! I would also like alarms if certain thermostat entities drop below zero (freeze warning) as well as if certain thermostats go above zero (freezer) or above 10C (refrigerator). For some of us, this could save a lot of money!]

Additional info

[Temperature sensors would need a threshold below or threshold above value to trip.]

@RoboKaren
Copy link
Author

Now yes, I can do this as an automation in HA but it takes making an extra script for each one -- and then I have to script in the notification / alarm etc. Alarmo has this functionality already.

@kabakakao
Copy link

Also a Heat Alarm (>50 degree) would be cool for rooms where smoke Alarm makes no sense (Kitchen)

@Trexano99
Copy link

You can easily create a binary sensor with template and use it in alarmo as a safety device.
Setup:

template:
  - binary_sensor:
      - name: "Thermostat temperature below alert value"
        state: "{{ states('sensor.your_sensor_here)|float(0) < 0 }}"
        device_class: safety
      - name: "Thermostat temperature above alert value"
        state: "{{ states('sensor.your_sensor_here)|float(0) > 10 }}"
        device_class: safety

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants