Monitor temperatur sensor over time, and register lowest temp.

Hi!
This might not be possible but I know there is alot of smart people out there :grinning:
I was thinking about monitoring a temperatur sensor over time, lets say for a day/24 hours, and then register the lowest temp for that timelap and send it to Vera Alerts.
Is this possible?

Frode

Input:
ReportTimer Pick your interval … i.e. Every day at 16:00:00 turn on, use an interval of 1 minute to turn off.
Temp Temperature to monitor.

Condition:
LowTemp (!ReportTimer; Temp) ? (Temp < LowTemp ? Temp : LowTemp) : Temp
SendAlert ReportTimer

Actions:
SendAlert Use the Advanced Tab of PLEG to send and Alert to the Vera Alerts Device
In the message encode the value of the LowTemp variable by using:
{(LowTemp)}
[hr]
The LowTemp logic is a little complicated:
If the Temperature is newer than the last time the ReportTimer was turned off (Which is the normal case), then execute the code between the second pair of parenthesis. This will return/set LowTemp to the Temp if it’s lower than LowTemp, otherwise it will return its current value.

When the ReportTimer turns OFF (after sending the alert) the LowTemp logic will be set to the current Temperature … and start recording until the next interval.

Great, thank alot for the quick reply! :grinning::ok_hand: