forked from ElephantEight/GenGenSceneController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathI_GenGenSceneControllerInstaller.xml
More file actions
55 lines (55 loc) · 1.71 KB
/
I_GenGenSceneControllerInstaller.xml
File metadata and controls
55 lines (55 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0"?>
<implementation>
<files>L_GenGenSceneControllerInstaller.lua</files>
<startup>SceneControllerInstaller_Init</startup>
<actionList>
<action>
<serviceId>urn:gengen_mcv-org:serviceId:SceneControllerInstaller1</serviceId>
<name>RegisterClientDevice</name>
<run>
SceneController_RegisterClientDevice(lul_device, tonumber(lul_settings.DeviceNumber))
return true
</run>
</action>
<action>
<serviceId>urn:gengen_mcv-org:serviceId:SceneControllerInstaller1</serviceId>
<name>RunZWaveQueue</name>
<run>
SceneController_RunZWaveQueue(lul_device, lul_settings)
return true
</run>
</action>
<action>
<serviceId>urn:gengen_mcv-org:serviceId:ZWaveMonitor1</serviceId>
<name>Monitor</name>
<run>
SceneController_ZWaveMonitorResponse(lul_device, lul_settings, false, false)
return true;
</run>
</action>
<action>
<serviceId>urn:gengen_mcv-org:serviceId:ZWaveMonitor1</serviceId>
<name>Intercept</name>
<run>
SceneController_ZWaveMonitorResponse(lul_device, lul_settings, true, false)
return true;
</run>
</action>
<action>
<serviceId>urn:gengen_mcv-org:serviceId:ZWaveMonitor1</serviceId>
<name>Timeout</name>
<run>
SceneController_ZWaveMonitorResponse(lul_device, lul_settings, true, true)
return true;
</run>
</action>
<action>
<serviceId>urn:gengen_mcv-org:serviceId:ZWaveMonitor1</serviceId>
<name>Error</name>
<run>
SceneController_ZWaveMonitorError(lul_device, lul_settings.ErrorCode, lul_settings.ErrorMessage)
return true;
</run>
</action>
</actionList>
</implementation>