Can you share a bit more info. Like some of the code that you have already done, the name of the sensors, whether the battery info is in a status or attribute, …
Also what do you want to check? I’m guessing you want an alert (what type? / via what component) when the battery goes low?
Here is an extensive thread about this topic (monitoring the battery status of many devices and being alerted repeatedly when it drops below a threshold):
- alias: Air Data Alert
trigger:
platform: numeric_state
entity_id: sensor.Air_Data_Received_in_2hrs
below: 13
action:
- service: notify.push_bullet
data:
target: device/robsphone
message: "No Air Data received for an hour"
title: "IoT Data"
But obviously I don’t want it it to only fire once it changes from OK to LOW with the STATE Trigger - i’d like it to fire each day until its OK again.
I suggest having a look at the Alert component. It can be configured to send a message on a periodic basis. However, I don’t believe it can be configure to send once a day (perhaps every 24 hours but that’s counting from the moment the issue is detected).
Let us know if it suits your needs. If not, we can think about another way to meet your requirements.