Contents |
Dise Complete Signals will listen to UDP messages on the network, and when a message that match a certain template is received the Dise Complete database can be updated and then multicast Remote Control messages can be sent out.
List of signals to monitor.
The port and interface to listen for UDP messages on. Settings that will be used to send multicast Remote Control messages on the network.
UDP data to listen for
Table in Dise Complete database to write to
Name in the Dise Complete database table
Value to write
IDs of Dise Complete Inventory...
Multicast data to send...
Add event in Dise Complete database
Dise Complete Signals requires a certain format of the table in the Dise Complete database to be able to write data.
There are two tables that already have the correct layout:
DynamicData
Settings
If you want to create a custom table to write in, you can create that table like this:
CREATE TABLE `dynamicdata` ( `IndexID` int(11) NOT NULL AUTO_INCREMENT, `Name` varchar(255) DEFAULT NULL, `Value` text, `TimeStamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`IndexID`) );