1
0
moha/hooks/scripts/panneau_salon.php

62 lines
1.7 KiB
PHP
Raw Normal View History

<?php
2022-01-01 06:26:02 +01:00
class rdc_panneau_salon
{
2022-01-01 06:26:02 +01:00
// list of devices we are listening to
private $devicelist = array("0x00124b0022ebac5c", "0x588e81fffe2cf695", "0x00124b001f900753", "0x04cf8cdf3c78aff0");
2022-01-01 06:26:02 +01:00
public $delay = 3; // amount of time in $timeunit
2022-01-02 18:14:13 +01:00
public $timeUnit = "minute"; // unit of time for delay, second, minute, day, week, month, year
public $luminance_min = 80;
public $luminance_max = 3000;
function __construct()
{
global $indexDevices;
// assigne the function to the sensors devices
foreach ($this->devicelist as $ieeeAddress)
{
$indexDevices[$ieeeAddress]->functions[] = array($this,"callback");
}
}
2022-01-01 06:26:02 +01:00
// callback fonction. Is called with these 4 parameters
2022-01-02 18:14:13 +01:00
public function callBack(&$device, $param, $value)
{
global $devices, $indexDevices;
switch($param)
{
case "occupancy":
2022-01-02 18:14:13 +01:00
if ($value == 1 and $indexDevices["0x04cf8cdf3c78aff0"]->illuminance_lux <= $this->luminance_min)
{
$this->send("ON");
}
break;
case "contact":
2022-01-02 18:14:13 +01:00
if ($value == false and $indexDevices["0x04cf8cdf3c78aff0"]->illuminance_lux <= $this->luminance_min)
{
$this->send("ON");
}
break;
case "illuminance_lux":
2022-01-02 18:14:13 +01:00
if ($value >= $this->luminance_max) $this->send("OFF");
}
echo _("notification received from MQTT") . EOL;
//echo $param . "=> " . $value . EOL;
}
2022-01-02 18:14:13 +01:00
private function send($state)
{
global $devices, $indexDevices;
2022-01-02 18:14:13 +01:00
$msg = array("state" => $state);
$device = & $indexDevices["0x588e81fffe343e8f"];
logger(INFO, _("publishing ") . $msg . _(" message: ") . $device->friendlyName);
$device->payload = $msg;
$device->set(null);
setDelay($device, $this->delay, $this->timeUnit, "state", "OFF", true);
}
}
2022-01-01 06:26:02 +01:00
$hooks["rdc/panneau/salon"] = new rdc_panneau_salon();
?>