1
0

added templates

This commit is contained in:
2022-09-10 14:58:55 +02:00
parent 2360419e50
commit 87577f6d71
9 changed files with 123 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?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);
}
?>