1
0
moha/hooks/scripts/rdc_sdb_eclairage.php

75 lines
2.4 KiB
PHP
Raw Normal View History

<?php
2022-01-17 00:18:50 +01:00
class rdc_sdb_eclairage extends hook
{
public $hookName = "rdc_sdb_eclairage";
2022-01-23 09:46:06 +01:00
public $active = true;
2022-01-17 00:18:50 +01:00
/* already defined in hook class */
// public $active = true;
//public $initlialized = false;
public $delay = 3; // amount of time in $timeunit
2022-01-20 00:26:57 +01:00
public $delayManual = 15; // amount of time in $timeunit for manual mode
2022-01-17 00:18:50 +01:00
public $timeUnit = "minute"; // unit of time for delay, second, minute, day, week, month, year
// list of devices we are listening to
2022-01-17 00:18:50 +01:00
// devicelist[$ieeAddress][0] => property to watch
// devicelist[$ieeAddress][1] => initialized = true
protected $devicelist = array(
RDC_SDB_DOUCHE_MVMT => "occupancy",
RDC_SDB_PLAFOND_MVMT => "occupancy",
RDC_SDB_MVMT => "occupancy",
RDC_SDB_WC_ECLAIRAGE => "state_l1"
2022-01-17 00:18:50 +01:00
);
2022-01-29 19:58:01 +01:00
// callback fonction. Is called with these 3 parameters
2022-01-06 13:03:26 +01:00
public function callBack(&$device, $property, $value)
{
2022-02-23 10:23:16 +01:00
global $indexDevices;
2022-01-23 09:46:06 +01:00
//var_dump($value);
2022-02-23 10:23:16 +01:00
$deviceTarget = $indexDevices[RDC_SDB_WC_ECLAIRAGE];
logger(DEBUG, sprintf(_("property=%s, value=%s"), $property, $value), __FILE__ . ":" . __LINE__);
2022-01-06 13:03:26 +01:00
switch($property)
{
case "occupancy":
logger(DEBUG, _("CASE: occupancy"), __FILE__ . ":" . __LINE__);
if ($value == ON)
{
2022-02-23 10:23:16 +01:00
if (getValue($deviceTarget->ieeeAddress, "state_l1") != "ON")
2022-01-29 19:58:01 +01:00
{
$this->send("ON");
}
//setDelay($indexDevices[RDC_SDB_WC_ECLAIRAGE], $this->delay, $this->timeUnit, "state_l1", "OFF", true);
$device->method = AUTO;
}
break;
case "state_l1":
logger(DEBUG, _("CASE: state_l1"), __FILE__ . ":" . __LINE__);
2022-02-23 10:23:16 +01:00
if ($value == "ON")
{
2022-02-23 10:23:16 +01:00
setDelay($deviceTarget, $this->delay, $this->timeUnit, "state_l1", "OFF", true);
$device->method = MANUAL;
2022-02-23 10:23:16 +01:00
}elseif ($value = "OFF")
{
2022-02-23 10:23:16 +01:00
removeEvent($deviceTarget, "state_l1", "OFF");
}
break;
}
2022-01-28 23:05:58 +01:00
logger (INFO, sprintf(_("%s: notification received from MQTT from %s => parameter: %s value: %s"), $this->hookName, $device->friendlyName, $property, ($value == 0 ? "OFF" : "ON")), __FILE__ . ":" . __LINE__);
}
private function send($state)
{
2022-02-23 10:23:16 +01:00
global $indexDevices;
$msg = array("state_l1" => $state);
2022-02-23 10:23:16 +01:00
$device = &$indexDevices[RDC_SDB_WC_ECLAIRAGE];
2022-01-28 23:05:58 +01:00
logger(INFO, sprintf(_("publishing message: %s to %s"), $state, $device->friendlyName), __FILE__ . ":" . __LINE__);
$device->payload = $msg;
$device->set(null);
}
}
2022-01-04 08:54:06 +01:00
$hooks["rdc_sdb_eclairage"] = new rdc_sdb_eclairage();
2022-01-17 00:18:50 +01:00
?>