1
0
moha/config/devices_constants.php.template

20 lines
515 B
Plaintext
Raw Permalink Normal View History

2022-09-10 14:58:55 +02:00
<?php
/************************************************************************************/
/*edit this file for defining constants of devices */
/*e.g. */
/* $deviceTable = array( <ieeeAddress of device> => <name of the constant>, ...); */
/************************************************************************************/
$deviceTable = array(
//example: "0x00124b0022ebac5c" => "RDC_SALON_MVMT2",
);
foreach($deviceTable as $device => $name)
{
define($name, $device);
}
?>