20 lines
515 B
Plaintext
20 lines
515 B
Plaintext
<?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);
|
|
}
|
|
|
|
?>
|
|
|