Page 1 of 1

Notify on setpoint temperature change

Posted: Monday 21 August 2017 16:16
by peterkrijgsman
i want to be notified when the setpoint of a room changes.
i tried blockly to do this, but i cannot do a check if the setpoint temperature just change.

how can i make this in a lua/dzvents script?

i use http subsystem to send notifications to my phone.

Re: Notify on setpoint temperature change

Posted: Tuesday 22 August 2017 8:52
by SweetPants
peterkrijgsman wrote: Monday 21 August 2017 16:16 i tried blockly to do this, but i cannot do a check if the setpoint temperature just change.
I think you can in dzVentz, search the forum first

Re: Notify on setpoint temperature change

Posted: Tuesday 22 August 2017 9:01
by Egregius
In pass2php it's easy:

Code: Select all

<?php
if($status!=apcu_fetch('sliving_set')){
	telegram('Setpoint living set to '.$status);
}