Any way to use HA for notifications when a vent looses connectivity? #75
-
I rarely look at the Flair mobile app, but I do see there are some alerts about vents that lost connectivity. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
Yes, I programmed the Note: In addition to the cover entity being unavailable when Flair reports the vent as being offline, Home Assistant, on its own, will set EVERY entity for the Flair integration to unavailable if polling the API fails to return any data (which is bound to happen from time to time when dealing with a cloud-based API). So, I highly recommend you add a condition in your automation that will only fire off the notification if the state of the fan's cover entity has remained |
Beta Was this translation helpful? Give feedback.
Yes, I programmed the
cover
entity for a vent to become unavailable if the Flair API reports a vent as being offline. In Home Assistant, you can use if a ventcover
entity has a state ofunavailable
as the trigger for your notification automation.Note: In addition to the cover entity being unavailable when Flair reports the vent as being offline, Home Assistant, on its own, will set EVERY entity for the Flair integration to unavailable if polling the API fails to return any data (which is bound to happen from time to time when dealing with a cloud-based API). So, I highly recommend you add a condition in your automation that will only fire off the notification if the state of the fan's c…