2022-08-05 17:24:11 +02:00
< ? php
// script to prevent when exterior temperature become inferior or superior to interior one
class rdc_temperature_int_ext extends hook
{
public $hookName = " rdc_wc_eclairage " ;
public $active = true ; //enable/disable hook (true => enabled)
protected $devicelist = array (
METEO => " tempc " ,
);
// callback fonction. Is called with these 4 parameters
public function callBack ( & $device , $property , $value )
{
global $indexDevices ;
2022-08-05 17:34:23 +02:00
static $status = 0 ;
if ( $device -> properties [ " indoortempc " ][ " value " ] > $value and $status === 1 )
2022-08-05 17:24:11 +02:00
{
2022-08-05 17:34:23 +02:00
$status = 0 ;
logger ( ALERT , _ ( " Indoor temperature is superior to outdoor one " ));
} elseif ( $device -> properties [ " indoortempc " ][ " value " ] < $value and $status === 0 )
2022-08-05 17:24:11 +02:00
{
2022-08-05 17:34:23 +02:00
$status = 1 ;
logger ( ALERT , _ ( " Indoor temperature is inferior to outdoor one " ));
2022-08-05 17:24:11 +02:00
}
logger ( INFO , sprintf ( _ ( " %s: notification received from MQTT from %s => parameter: %s value: %s " ), $this -> hookName , $device -> friendlyName , $property , bool2string ( $value )), __FILE__ . " : " . __LINE__ );
}
}
$hooks [ " rdc_temperature_int_ext " ] = new rdc_temperature_int_ext ();
?>