19 lines
243 B
PHP
19 lines
243 B
PHP
|
<?php
|
||
|
|
||
|
$propertyByType = array(
|
||
|
"light" => array(
|
||
|
"state",
|
||
|
"brightness",
|
||
|
"state_l1",
|
||
|
"state_l2"
|
||
|
)
|
||
|
"climate" => array(
|
||
|
"local_temperature",
|
||
|
"value",
|
||
|
"current_heating_setpoint",
|
||
|
)
|
||
|
);
|
||
|
|
||
|
|
||
|
?>
|