Subversion Repositories HomeAutomation

Rev

Rev 2268 | Rev 2281 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | SVN | RSS feed

Rev Author Line No. Line
946 runge 1
<?xml version="1.0" standalone="yes"?>
2
<root>
3
  <classes>
986 runge 4
    <class id="0" name="nmt" description="Networkmanagement used only for packets with the nmt-protcol header"/>
5
    <class id="11" name="mnmt" description="Module networkmanagement, right now only used for requesting module listing from a node"/>
6
    <class id="12" name="act" description="Actuator nmt_messages"/>
7
    <class id="13" name="sns" description="Sensor nmt_messages"/>
946 runge 8
    <class id="14" name="def" description="Default, not to be used"/>
9
    <class id="15" name="tst" description="Testing stuff"/>
1266 pengi 10
    <class id="10" name="chn" description="Control channel based"/>
946 runge 11
  </classes>
12
  <commands>
13
    <command id="0" name="List" type="global" module="" description="Message that module send to tell the world what it is">
14
      <variables>
2229 linlun 15
    <variable name="HardwareId" type="uint" start_bit="0" bit_length="32" unit="" description=""/>
16
    <variable name="NumberOfModules" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
17
    <variable name="SequenceNumber" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
946 runge 18
      </variables>
19
    </command>
968 runge 20
 
954 runge 21
    <command id="2" name="Debug" type="global" module="" description="Used for debugging, should not be used for anything real"/>
22
    <command id="3" name="Report_Interval" type="global" module="" description="Get/Set interval of reporting">
952 runge 23
      <variables>
2229 linlun 24
    <variable name="Time" type="uint" start_bit="0" bit_length="8" unit="Second" description=""/>
952 runge 25
      </variables>
26
    </command>
2229 linlun 27
 
1580 kribba 28
    <command id="10" name="GPSTime" type="global" module="" description="Timestamp from GPS module">
29
      <variables>
2229 linlun 30
    <variable name="Hour" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
31
    <variable name="Minute" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
32
    <variable name="Second" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
33
    <variable name="Zone" type="uint" start_bit="24" bit_length="8" unit="" description="Timezone diff from GMT"/>
1580 kribba 34
      </variables>
35
    </command>
2229 linlun 36
 
1583 kribba 37
    <command id="11" name="GPSDate" type="global" module="" description="Date from GPS module">
38
      <variables>
2229 linlun 39
    <variable name="Year" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
40
    <variable name="Month" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
41
    <variable name="Day" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1583 kribba 42
      </variables>
43
    </command>
958 runge 44
 
2166 arune 45
 
958 runge 46
    <command id="64" name="Pwm" type="physical" module="" description="Message for pwm data">
47
      <variables>
2229 linlun 48
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
49
    <variable name="Value" type="uint" start_bit="8" bit_length="16" unit="" description=""/>
958 runge 50
      </variables>
51
    </command>
946 runge 52
    <command id="65" name="Temperature_Celsius" type="physical" module="" description="Temperature data">
53
      <variables>
2229 linlun 54
    <variable name="SensorId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
55
    <variable name="Value" type="float" start_bit="8" bit_length="16" unit="Celsius" description=""/>
946 runge 56
      </variables>
57
    </command>
956 runge 58
    <command id="66" name="Humidity_Percent" type="physical" module="" description="Humidity data">
59
      <variables>
2229 linlun 60
    <variable name="SensorId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
61
    <variable name="Value" type="float" start_bit="8" bit_length="16" unit="" description=""/>
956 runge 62
      </variables>
63
    </command>
946 runge 64
    <command id="67" name="Voltage" type="physical" module="" description="Voltage data">
65
      <variables>
2229 linlun 66
    <variable name="SensorId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
67
    <variable name="Value" type="float" start_bit="8" bit_length="16" unit="Volt" description=""/>
946 runge 68
      </variables>
69
    </command>
981 runge 70
    <command id="68" name="Phonenumber" type="physical" module="" description="Phonenumber data">
71
      <variables>
2229 linlun 72
    <variable name="Number" type="hexstring" start_bit="0" bit_length="64" unit="" description=""/>
981 runge 73
      </variables>
74
    </command>
956 runge 75
    <command id="69" name="Rotary_Switch" type="physical" module="" description="Command to transmit a rotary encoder switch status">
76
      <variables>
2229 linlun 77
    <variable name="SwitchId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
78
    <variable name="Direction" type="enum" start_bit="8" bit_length="8" unit="" description="">
79
      <value id="0" name="Clockwise"/>
80
      <value id="1" name="Counterclockwise"/>
81
    </variable>
82
    <variable name="Steps" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
83
    <variable name="Position" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
956 runge 84
      </variables>
85
    </command>
86
    <command id="70" name="Button" type="physical" module="" description="">
87
      <variables>
2229 linlun 88
    <variable name="SwitchId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
89
    <variable name="Status" type="enum" start_bit="8" bit_length="8" unit="" description="">
90
      <value id="1" name="Pressed"/>
91
      <value id="0" name="Released"/>
92
    </variable>
956 runge 93
      </variables>
94
    </command>
992 arune 95
    <command id="71" name="IR" type="physical" module="" description="IR data protocol encoding">
96
      <variables>
2229 linlun 97
    <variable name="Channel" type="uint" start_bit="0" bit_length="4" unit="" description="Channel of received or transmitted data"/>
98
    <variable name="Status" type="enum" start_bit="4" bit_length="4" unit="" description="State of remote button">
99
      <value id="0" name="Released"/>
1616 runge 100
      <value id="1" name="Pressed"/>
101
      <value id="2" name="Burst"/>
2229 linlun 102
    </variable>
103
    <variable name="Protocol" type="enum" start_bit="8" bit_length="8" unit="" description="Button protocol">
104
      <value id="0" name="RC5"/>
105
      <value id="1" name="RC6"/>
106
      <value id="2" name="RCMM"/>
107
      <value id="3" name="SIRC"/>
108
      <value id="4" name="Sharp"/>
109
      <value id="5" name="NEC"/>
110
      <value id="6" name="Samsung"/>
111
      <value id="7" name="Marantz"/>
112
      <value id="8" name="Panasonic"/>
113
      <value id="9" name="Sky"/>
114
      <value id="10" name="Nexa2"/>
115
      <value id="11" name="Nexa"/>
116
      <value id="12" name="Viking"/>
2233 linlun 117
      <value id="13" name="VikingSteak"/>
2239 linlun 118
      <value id="14" name="Rubicson"/>
2244 linlun 119
      <value id="15" name="iRobot"/>
2258 linlun 120
      <value id="16" name="OregonRain"/>
121
      <value id="17" name="OregonTempHum"/>
122
      <value id="18" name="OregonWind"/>
2229 linlun 123
      <value id="255" name="Unknown"/>
124
    </variable>
125
    <variable name="IRdata" type="uint" start_bit="16" bit_length="48" unit="" description="Button protocol unique ID"/>
992 arune 126
      </variables>
127
    </command>
1260 arune 128
    <command id="72" name="Current" type="physical" module="" description="Current data">
129
      <variables>
2229 linlun 130
    <variable name="SensorId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
131
    <variable name="Value" type="float" start_bit="8" bit_length="16" unit="Ampere" description=""/>
1260 arune 132
      </variables>
133
    </command>
1121 linlun 134
    <command id="73" name="ElectricPower" type="physical" module="" description="Message with data from a power meter">
135
      <variables>
2229 linlun 136
    <variable name="Power" type="uint" start_bit="0" bit_length="16" unit="Watt" description=""/>
137
    <variable name="EnergySum" type="uint" start_bit="16" bit_length="32" unit="Wh" description=""/>
138
    <variable name="Power32" type="uint" start_bit="48" bit_length="16" unit="Watt" description="Average of 32 measurments"/>
1121 linlun 139
      </variables>
140
    </command>
1419 linlun 141
    <command id="74" name="SetPin" type="physical" module="" description="">
142
      <variables>
2229 linlun 143
    <variable name="PinId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
144
    <variable name="Status" type="enum" start_bit="8" bit_length="8" unit="" description="">
145
      <value id="1" name="High"/>
146
      <value id="0" name="Low"/>
147
    </variable>
1419 linlun 148
      </variables>
149
    </command>
2229 linlun 150
    <command id="75" name="PinStatus" type="physical" module="" description="">
1421 linlun 151
      <variables>
2229 linlun 152
    <variable name="PinId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
153
    <variable name="Status" type="enum" start_bit="8" bit_length="8" unit="" description="">
154
      <value id="1" name="High"/>
155
      <value id="0" name="Low"/>
156
    </variable>
1421 linlun 157
      </variables>
158
    </command>
1728 cougar 159
    <command id="76" name="Counter" type="physical" module="" description="Message with counter value">
160
      <variables>
2229 linlun 161
    <variable name="PinId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
162
    <variable name="Count" type="uint" start_bit="8" bit_length="32" unit="" description=""/>
1728 cougar 163
      </variables>
164
    </command>
2166 arune 165
    <command id="77" name="Flow" type="physical" module="" description="Message with flow data, such as water flow">
166
      <variables>
2229 linlun 167
    <variable name="Flow" type="uint" start_bit="0" bit_length="16" unit="Milliliter/s" description=""/>
168
    <variable name="Volume" type="uint" start_bit="16" bit_length="32" unit="Milliliter" description=""/>
2166 arune 169
      </variables>
170
    </command>
2225 linlun 171
    <command id="78" name="Distance" type="physical" module="" description="Distance data">
172
      <variables>
2229 linlun 173
    <variable name="SensorId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
174
    <variable name="Value" type="uint" start_bit="8" bit_length="16" unit="mm" description=""/>
2225 linlun 175
      </variables>
176
    </command>
2229 linlun 177
    <command id="79" name="Percent" type="physical" module="" description="0 to 100.00%">
178
      <variables>
179
    <variable name="SensorId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
180
    <variable name="Value" type="uint" start_bit="8" bit_length="16" unit="%" description=""/>
181
      </variables>
182
    </command>
2166 arune 183
 
184
 
1121 linlun 185
    <command id="128" name="setEnergy" type="specific" module="power" description="Set the energy value on the power meter module">
186
      <variables>
2229 linlun 187
    <variable name="Energy" type="uint" start_bit="0" bit_length="32" unit="W/h" description=""/>
1121 linlun 188
      </variables>
189
    </command>
1436 linlun 190
    <command id="129" name="avgPower" type="specific" module="power" description="The energy since last message">
191
      <variables>
2229 linlun 192
    <variable name="Energy" type="uint" start_bit="0" bit_length="16" unit="W/(10*h)" description=""/>
1436 linlun 193
      </variables>
194
    </command>    
2229 linlun 195
 
992 arune 196
    <command id="128" name="IRraw" type="specific" module="irReceive" description="If a protocol not could be found, then send raw data">
2229 linlun 197
      <variables>
198
    <variable name="Act1" type="uint" start_bit="0" bit_length="16" unit="Microsecond" description="First active time"/>
199
    <variable name="Pas1" type="uint" start_bit="16" bit_length="16" unit="Microsecond" description="First passive time"/>
200
    <variable name="Act2" type="uint" start_bit="32" bit_length="16" unit="Microsecond" description="Second active time"/>
201
    <variable name="Pas2" type="uint" start_bit="48" bit_length="16" unit="Microsecond" description="Second passive time"/>
992 arune 202
      </variables>
203
    </command>
2229 linlun 204
 
1471 arune 205
    <command id="128" name="IRraw" type="specific" module="irTransceive" description="If a protocol not could be found, then send raw data">
2229 linlun 206
      <variables>
207
    <variable name="Act1" type="uint" start_bit="0" bit_length="16" unit="Microsecond" description="First active time"/>
208
    <variable name="Pas1" type="uint" start_bit="16" bit_length="16" unit="Microsecond" description="First passive time"/>
209
    <variable name="Act2" type="uint" start_bit="32" bit_length="16" unit="Microsecond" description="Second active time"/>
210
    <variable name="Pas2" type="uint" start_bit="48" bit_length="16" unit="Microsecond" description="Second passive time"/>
1471 arune 211
      </variables>
212
    </command>
2236 linlun 213
    <command id="128" name="IRraw" type="specific" module="rfTransceive" description="If a protocol not could be found, then send raw data">
214
      <variables>
215
    <variable name="Act1" type="uint" start_bit="0" bit_length="16" unit="Microsecond" description="First active time"/>
216
    <variable name="Pas1" type="uint" start_bit="16" bit_length="16" unit="Microsecond" description="First passive time"/>
217
    <variable name="Act2" type="uint" start_bit="32" bit_length="16" unit="Microsecond" description="Second active time"/>
218
    <variable name="Pas2" type="uint" start_bit="48" bit_length="16" unit="Microsecond" description="Second passive time"/>
219
      </variables>
220
    </command>
1577 arune 221
    <command id="129" name="IrConfig" type="specific" module="irTransceive" description="irTransceive config">
222
      <variables>
2229 linlun 223
    <variable name="Channel" type="uint" start_bit="0" bit_length="4" unit="" description="Which channel to configure"/>
224
    <variable name="Direction" type="enum" start_bit="4" bit_length="4" unit="" description="">
225
      <value id="0" name="Auto"/>
226
      <value id="1" name="Transmit"/>
227
      <value id="2" name="Receive"/>
228
    </variable>
229
    <variable name="Transmit power" type="uint" start_bit="8" bit_length="2" unit="" description="0 for lowest power, 3 for max"/>
230
    <variable name="Modulation divider" type="uint" start_bit="16" bit_length="16" unit="" description="Freq=4145146Hz/divider"/>
1577 arune 231
      </variables>
232
    </command>
1810 arune 233
    <command id="130" name="IrProntoStart" type="specific" module="irTransceive" description="">
2229 linlun 234
      <variables>
235
    <variable name="Channel" type="uint" start_bit="0" bit_length="4" unit="" description=""/>
236
    <variable name="Format" type="uint" start_bit="4" bit_length="12" unit="" description=""/>
237
    <variable name="wFrqDiv" type="uint" start_bit="16" bit_length="16" unit="" description=""/>
238
    <variable name="OnceSeqLen" type="uint" start_bit="32" bit_length="16" unit="" description=""/>
239
    <variable name="RepSeqLen" type="uint" start_bit="48" bit_length="16" unit="" description=""/>
1810 arune 240
      </variables>
241
    </command>
1819 arune 242
    <command id="131" name="IrProntoTiming" type="specific" module="irTransceive" description="">
2229 linlun 243
      <variables>
244
    <variable name="Channel" type="uint" start_bit="0" bit_length="4" unit="" description=""/>
245
    <variable name="Mode1" type="uint" start_bit="4" bit_length="4" unit="" description=""/>
246
    <variable name="Mode2" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
247
    <variable name="Time" type="uint" start_bit="16" bit_length="24" unit="Microsecond" description=""/>
1810 arune 248
      </variables>
249
    </command>
1825 arune 250
    <command id="132" name="IrProntoContinue" type="specific" module="irTransceive" description="">
2229 linlun 251
      <variables>
252
    <variable name="Channel" type="uint" start_bit="0" bit_length="4" unit="" description=""/>
253
    <variable name="Mode1" type="uint" start_bit="4" bit_length="4" unit="" description=""/>
254
    <variable name="Mode2" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1825 arune 255
      </variables>
256
    </command>
257
    <command id="133" name="IrProntoStop" type="specific" module="irTransceive" description="">
2229 linlun 258
      <variables>
259
    <variable name="Channel" type="uint" start_bit="0" bit_length="4" unit="" description=""/>
260
    <variable name="Mode1" type="uint" start_bit="4" bit_length="4" unit="" description=""/>
261
    <variable name="Mode2" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1825 arune 262
      </variables>
263
    </command>
1827 arune 264
    <command id="134" name="IrProntoResponse" type="specific" module="irTransceive" description="">
2229 linlun 265
      <variables>
266
    <variable name="Channel" type="uint" start_bit="0" bit_length="4" unit="" description=""/>
267
    <variable name="Mode1" type="uint" start_bit="4" bit_length="4" unit="" description=""/>
268
    <variable name="Mode2" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
269
    <variable name="Response" type="enum" start_bit="16" bit_length="8" unit="" description="">
270
      <value id="0" name="Ok"/>
271
 
272
      <!-- Pronto transmission was stopped (either prematurely or due to completion). -->
273
      <value id="1" name="Stopped"/>
274
 
275
      <!-- Waiting for next pronto data packet. -->
276
      <value id="2" name="Waiting"/>
277
 
278
      <!-- Pronto data is now being transmitted. -->
279
      <value id="4" name="Transmitting"/>
280
 
281
      <!-- Trying to stop or continue a pronto transmission that has already stopped. -->
282
      <value id="241" name="AlreadyStopped"/>
283
 
284
      <!-- Pronto data is already being transmitted (or prepared) on another channel. Can only process pronto data at one channel at once. -->
285
      <value id="242" name="Busy_AlreadySendingPronto"/>
286
 
287
      <!-- The specified channel is busy transmitting (pronto or non-pronto) data. -->
288
      <value id="243" name="Busy_ChannelBusy"/>
289
 
290
      <!-- Transmission (pronto or non-pronto) with other frequency is ongoing on other channel. -->
291
      <value id="244" name="Busy_OtherFrequencyLocked"/>
292
 
293
      <!-- Pronto activity is ongoing, but on a different channel than that specified in STOP/CONTINUE request. -->
294
      <value id="245" name="Error_WrongProntoChannel"/>
295
 
296
      <!-- Generic error code. Bad data in packet. -->
297
      <value id="255" name="Error"/>
298
    </variable>
1827 arune 299
      </variables>
300
    </command>
301
    <command id="135" name="IrProntoData1" type="specific" module="irTransceive" description="">
2229 linlun 302
      <variables>
303
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
304
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
305
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
306
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
307
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
308
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
309
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
310
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 311
      </variables>
312
    </command>
1827 arune 313
    <command id="136" name="IrProntoData2" type="specific" module="irTransceive" description="">
2229 linlun 314
      <variables>
315
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
316
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
317
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
318
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
319
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
320
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
321
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
322
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 323
      </variables>
324
    </command>
1827 arune 325
    <command id="137" name="IrProntoData3" type="specific" module="irTransceive" description="">
2229 linlun 326
      <variables>
327
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
328
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
329
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
330
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
331
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
332
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
333
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
334
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 335
      </variables>
336
    </command>
1827 arune 337
    <command id="138" name="IrProntoData4" type="specific" module="irTransceive" description="">
2229 linlun 338
      <variables>
339
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
340
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
341
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
342
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
343
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
344
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
345
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
346
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 347
      </variables>
348
    </command>
1827 arune 349
    <command id="139" name="IrProntoData5" type="specific" module="irTransceive" description="">
2229 linlun 350
      <variables>
351
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
352
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
353
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
354
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
355
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
356
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
357
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
358
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 359
      </variables>
360
    </command>
1827 arune 361
    <command id="140" name="IrProntoData6" type="specific" module="irTransceive" description="">
2229 linlun 362
      <variables>
363
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
364
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
365
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
366
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
367
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
368
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
369
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
370
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 371
      </variables>
372
    </command>
1827 arune 373
    <command id="141" name="IrProntoData7" type="specific" module="irTransceive" description="">
2229 linlun 374
      <variables>
375
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
376
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
377
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
378
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
379
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
380
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
381
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
382
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 383
      </variables>
384
    </command>
1827 arune 385
    <command id="142" name="IrProntoData8" type="specific" module="irTransceive" description="">
2229 linlun 386
      <variables>
387
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
388
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
389
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
390
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
391
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
392
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
393
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
394
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 395
      </variables>
396
    </command>
1827 arune 397
    <command id="143" name="IrProntoData9" type="specific" module="irTransceive" description="">
2229 linlun 398
      <variables>
399
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
400
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
401
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
402
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
403
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
404
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
405
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
406
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 407
      </variables>
408
    </command>
1827 arune 409
    <command id="144" name="IrProntoData10" type="specific" module="irTransceive" description="">
2229 linlun 410
      <variables>
411
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
412
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
413
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
414
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
415
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
416
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
417
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
418
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 419
      </variables>
420
    </command>
1827 arune 421
    <command id="145" name="IrProntoData11" type="specific" module="irTransceive" description="">
2229 linlun 422
      <variables>
423
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
424
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
425
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
426
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
427
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
428
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
429
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
430
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 431
      </variables>
432
    </command>
1827 arune 433
    <command id="146" name="IrProntoData12" type="specific" module="irTransceive" description="">
2229 linlun 434
      <variables>
435
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
436
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
437
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
438
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
439
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
440
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
441
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
442
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 443
      </variables>
444
    </command>
1827 arune 445
    <command id="147" name="IrProntoData13" type="specific" module="irTransceive" description="">
2229 linlun 446
      <variables>
447
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
448
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
449
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
450
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
451
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
452
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
453
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
454
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 455
      </variables>
456
    </command>
1827 arune 457
    <command id="148" name="IrProntoData14" type="specific" module="irTransceive" description="">
2229 linlun 458
      <variables>
459
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
460
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
461
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
462
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
463
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
464
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
465
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
466
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 467
      </variables>
468
    </command>
1827 arune 469
    <command id="149" name="IrProntoData15" type="specific" module="irTransceive" description="">
2229 linlun 470
      <variables>
471
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
472
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
473
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
474
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
475
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
476
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
477
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
478
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 479
      </variables>
480
    </command>
1827 arune 481
    <command id="150" name="IrProntoData16" type="specific" module="irTransceive" description="">
2229 linlun 482
      <variables>
483
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
484
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
485
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
486
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
487
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
488
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
489
    <variable name="Act4" type="uint" start_bit="48" bit_length="8" unit="Pulses" description="Fourth active time"/>
490
    <variable name="Pas4" type="uint" start_bit="56" bit_length="8" unit="Pulses" description="Fourth passive time"/>
1810 arune 491
      </variables>
492
    </command>
1827 arune 493
    <command id="151" name="IrProntoEnd1" type="specific" module="irTransceive" description="">
2229 linlun 494
      <variables>
495
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
496
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
497
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
498
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
499
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
500
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
501
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 502
      </variables>
503
    </command>
1827 arune 504
    <command id="152" name="IrProntoEnd2" type="specific" module="irTransceive" description="">
2229 linlun 505
      <variables>
506
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
507
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
508
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
509
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
510
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
511
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
512
    <variable name="Repeat" type="uint" start_bit="56" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 513
      </variables>
514
    </command>
1827 arune 515
    <command id="153" name="IrProntoEnd3" type="specific" module="irTransceive" description="">
2229 linlun 516
      <variables>
517
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
518
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
519
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
520
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
521
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
522
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
523
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 524
      </variables>
525
    </command>
1827 arune 526
    <command id="154" name="IrProntoEnd4" type="specific" module="irTransceive" description="">
2229 linlun 527
      <variables>
528
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
529
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
530
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
531
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
532
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
533
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
534
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 535
      </variables>
536
    </command>
1827 arune 537
    <command id="155" name="IrProntoEnd5" type="specific" module="irTransceive" description="">
2229 linlun 538
      <variables>
539
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
540
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
541
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
542
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
543
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
544
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
545
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 546
      </variables>
547
    </command>
1827 arune 548
    <command id="156" name="IrProntoEnd6" type="specific" module="irTransceive" description="">
2229 linlun 549
      <variables>
550
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
551
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
552
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
553
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
554
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
555
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
556
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 557
      </variables>
558
    </command>
1827 arune 559
    <command id="157" name="IrProntoEnd7" type="specific" module="irTransceive" description="">
2229 linlun 560
      <variables>
561
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
562
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
563
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
564
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
565
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
566
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
567
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 568
      </variables>
569
    </command>
1827 arune 570
    <command id="158" name="IrProntoEnd8" type="specific" module="irTransceive" description="">
2229 linlun 571
      <variables>
572
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
573
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
574
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
575
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
576
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
577
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
578
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 579
      </variables>
580
    </command>
1827 arune 581
    <command id="159" name="IrProntoEnd9" type="specific" module="irTransceive" description="">
2229 linlun 582
      <variables>
583
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
584
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
585
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
586
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
587
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
588
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
589
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 590
      </variables>
591
    </command>
1827 arune 592
    <command id="160" name="IrProntoEnd10" type="specific" module="irTransceive" description="">
2229 linlun 593
      <variables>
594
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
595
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
596
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
597
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
598
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
599
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
600
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 601
      </variables>
602
    </command>
1827 arune 603
    <command id="161" name="IrProntoEnd11" type="specific" module="irTransceive" description="">
2229 linlun 604
      <variables>
605
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
606
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
607
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
608
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
609
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
610
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
611
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 612
      </variables>
613
    </command>
1827 arune 614
    <command id="162" name="IrProntoEnd12" type="specific" module="irTransceive" description="">
2229 linlun 615
      <variables>
616
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
617
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
618
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
619
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
620
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
621
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
622
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 623
      </variables>
624
    </command>
1827 arune 625
    <command id="163" name="IrProntoEnd13" type="specific" module="irTransceive" description="">
2229 linlun 626
      <variables>
627
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
628
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
629
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
630
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
631
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
632
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
633
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 634
      </variables>
635
    </command>
1827 arune 636
    <command id="164" name="IrProntoEnd14" type="specific" module="irTransceive" description="">
2229 linlun 637
      <variables>
638
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
639
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
640
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
641
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
642
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
643
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
644
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 645
      </variables>
646
    </command>
1827 arune 647
    <command id="165" name="IrProntoEnd15" type="specific" module="irTransceive" description="">
2229 linlun 648
      <variables>
649
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
650
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
651
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
652
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
653
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
654
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
655
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 656
      </variables>
657
    </command>
1827 arune 658
    <command id="166" name="IrProntoEnd16" type="specific" module="irTransceive" description="">
2229 linlun 659
      <variables>
660
    <variable name="Act1" type="uint" start_bit="0" bit_length="8" unit="Pulses" description="First active time"/>
661
    <variable name="Pas1" type="uint" start_bit="8" bit_length="8" unit="Pulses" description="First passive time"/>
662
    <variable name="Act2" type="uint" start_bit="16" bit_length="8" unit="Pulses" description="Second active time"/>
663
    <variable name="Pas2" type="uint" start_bit="24" bit_length="8" unit="Pulses" description="Second passive time"/>
664
    <variable name="Act3" type="uint" start_bit="32" bit_length="8" unit="Pulses" description="Third active time"/>
665
    <variable name="Pas3" type="uint" start_bit="40" bit_length="8" unit="Pulses" description="Third passive time"/>
666
    <variable name="Repeat" type="uint" start_bit="48" bit_length="8" unit="Count" description="Repeat info"/>
1810 arune 667
      </variables>
668
    </command>
2229 linlun 669
 
1000 kribba 670
    <command id="128" name="Position" type="specific" module="nmea" description="WGS80 LAT/LONG Position">
2229 linlun 671
      <variables>
672
    <variable name="Lat_deg" type="uint" start_bit="0" bit_length="8" unit="Degrees" description="Degrees Lat"/>
673
    <variable name="Lat_min" type="uint" start_bit="8" bit_length="8" unit="'" description="Minutes lat"/>
674
    <variable name="Lat_sec" type="uint" start_bit="16" bit_length="15" unit="''" description="Seconds Lat"/>
675
    <variable name="Lat_CD" type="uint" start_bit="31" bit_length="1" unit="" description="N/S"/>
676
    <variable name="Lon_deg" type="uint" start_bit="32" bit_length="8" unit="Degrees" description="Degrees Lat"/>
677
    <variable name="Lon_min" type="uint" start_bit="40" bit_length="8" unit="'" description="Minutes lat"/>
678
    <variable name="Lon_sec" type="uint" start_bit="48" bit_length="15" unit="''" description="Seconds Lat"/>
679
    <variable name="Lon_CD" type="uint" start_bit="63" bit_length="1" unit="" description="E/W"/>      
680
      </variables>
1000 kribba 681
    </command>
1584 kribba 682
    <command id="129" name="Heading" type="specific" module="nmea" description="Speed, heading, fix information">
2229 linlun 683
      <variables>
684
    <variable name="Fixvalid" type="uint" start_bit="0" bit_length="8" unit="" description="0/1"/>
685
    <variable name="Fixtype" type="uint" start_bit="8" bit_length="8" unit="" description="1=No, 2=2D, 3=3D"/>
686
    <variable name="Numsat" type="uint" start_bit="16" bit_length="8" unit="" description="Number of sats in fix"/>
687
    <variable name="Speed" type="uint" start_bit="24" bit_length="8" unit="Knots" description="Speed over ground"/>
688
    <variable name="Course" type="uint" start_bit="32" bit_length="16" unit="Degrees" description="Course made good"/>
689
      </variables>
1584 kribba 690
    </command>
2229 linlun 691
 
968 runge 692
    <command id="128" name="Printf" type="specific" module="Debug" description="Used for sending debug text with printf">
2229 linlun 693
      <variables>
694
    <variable name="Text" type="ascii" start_bit="0" bit_length="64" unit="" description=""/>
968 runge 695
      </variables>
696
    </command>
2234 arune 697
    <command id="129" name="Benchmark" type="specific" module="Debug" description="Used for sending debug data with benchmark module">
698
      <variables>
699
    <variable name="Byte0" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
700
    <variable name="Byte1" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
701
    <variable name="Byte2" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
702
    <variable name="Byte3" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
703
    <variable name="Byte4" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
704
    <variable name="Byte5" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
705
    <variable name="Byte6" type="uint" start_bit="48" bit_length="8" unit="" description=""/>
706
    <variable name="Byte7" type="uint" start_bit="56" bit_length="8" unit="" description=""/>
707
      </variables>
708
    </command>
2229 linlun 709
 
946 runge 710
    <command id="128" name="LCD_Clear" type="specific" module="HD44789" description="Clear LCD"/>
711
    <command id="129" name="LCD_Cursor" type="specific" module="HD44789" description="Set LCD cursor position">
712
      <variables>
2229 linlun 713
    <variable name="X" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
714
    <variable name="Y" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
946 runge 715
      </variables>
716
    </command>
717
    <command id="130" name="LCD_Text" type="specific" module="HD44789" description="Print text on LCD">
718
      <variables>
2229 linlun 719
    <variable name="Text" type="ascii" start_bit="0" bit_length="64" unit="" description=""/>
946 runge 720
      </variables>
721
    </command>
2229 linlun 722
    <command id="131" name="LCD_Size" type="specific" module="HD44789" description="Size of LCD">
946 runge 723
      <variables>
2229 linlun 724
    <variable name="Width" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
725
    <variable name="Height" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
946 runge 726
      </variables>
727
    </command>
728
    <command id="132" name="LCD_Backlight" type="specific" module="HD44789" description="Set LCD backlight brightness">
729
      <variables>
2229 linlun 730
    <variable name="Strength" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1427 linlun 731
    <variable name="AutoLight" type="enum" start_bit="15" bit_length="1" unit="" description="">
2229 linlun 732
      <value id="0" name="OFF"/>
733
      <value id="1" name="ON"/>
1427 linlun 734
    </variable>
946 runge 735
      </variables>
736
    </command>
2229 linlun 737
    <command id="133" name="LCD_TextAt" type="specific" module="HD44789" description="Print text on LCD">
946 runge 738
      <variables>
2229 linlun 739
    <variable name="X" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
740
    <variable name="Y" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
741
    <variable name="Text" type="ascii" start_bit="16" bit_length="48" unit="" description=""/>
946 runge 742
      </variables>
743
    </command>
2229 linlun 744
 
745
    <command id="128" name="DEBUG" type="specific" module="RGBdriver" description="Debug data from RGB-driver">
746
      <variables>
747
    <variable name="ADC_W" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
748
    <variable name="ADC_R" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
749
    <variable name="ADC_G" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
750
    <variable name="ADC_B" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
751
    <variable name="PWM_W" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
752
    <variable name="PWM_R" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
753
    <variable name="PWM_G" type="uint" start_bit="48" bit_length="8" unit="" description=""/>
754
    <variable name="PWM_B" type="uint" start_bit="56" bit_length="8" unit="" description=""/>
755
      </variables>
756
    </command>
757
 
1448 myhrman 758
    <command id="128" name="SerialData" type="specific" module="Serial" description="Serial data">
759
      <variables>
2229 linlun 760
    <variable name="Text" type="ascii" start_bit="0" bit_length="64" unit="" description=""/>
1448 myhrman 761
      </variables>
1452 myhrman 762
    </command>
763
    <command id="129" name="SerialConfig" type="specific" module="Serial" description="Serial config">
764
      <variables>
2229 linlun 765
    <variable name="BaudRate" type="uint" start_bit="0" bit_length="16" unit="" description="Baudrate/10"/>
766
    <variable name="PhysicalFormat" type="enum" start_bit="16" bit_length="8" unit="" description="">
767
      <value id="0" name="RS232"/>
768
      <value id="1" name="RS485FullDuplex"/>
769
      <value id="2" name="RS485HalfDuplex"/>
770
      <value id="3" name="RS485HalfDuplexWithTermination"/>
771
      <value id="255" name="Loopback"/>
772
    </variable>
773
    <variable name="DataBits" type="uint" start_bit="24" bit_length="8" unit="" description="Nr of data bits (5-9)"/>
774
    <variable name="StopBits" type="uint" start_bit="32" bit_length="8" unit="" description="Nr of stop bits (1-2)"/>
775
    <variable name="Parity" type="enum" start_bit="40" bit_length="8" unit="" description="Parity mode">
776
      <value id="0" name="ParityNone"/>
777
      <value id="1" name="ParityEven"/>
778
      <value id="2" name="ParityOdd"/>
779
    </variable>
1452 myhrman 780
      </variables>
781
    </command>
1764 myhrman 782
    <command id="130" name="SerialFilter" type="specific" module="Serial" description="Serial Filter Config">
783
      <variables>
2229 linlun 784
    <variable name="DataTimeout" type="uint" start_bit="0" bit_length="8" unit="" description="Timeout before RX data is sent via CAN"/>
785
    <variable name="PrefixLength" type="uint" start_bit="8" bit_length="2" unit="" description="Length of prefix (in bytes)"/>
786
    <variable name="SuffixLength" type="uint" start_bit="10" bit_length="2" unit="" description="Length of suffix (in bytes)"/>
787
    <variable name="PacketLength" type="uint" start_bit="12" bit_length="4" unit="" description="Max nr of RX bytes to pack into CAN frame"/>
788
    <variable name="PrefixByte2" type="uint" start_bit="16" bit_length="8" unit="" description="Prefix byte2"/>
789
    <variable name="PrefixByte1" type="uint" start_bit="24" bit_length="8" unit="" description="Prefix byte1"/>
790
    <variable name="PrefixByte0" type="uint" start_bit="32" bit_length="8" unit="" description="Prefix byte0"/>
791
    <variable name="SuffixByte2" type="uint" start_bit="40" bit_length="8" unit="" description="Suffix byte2"/>
792
    <variable name="SuffixByte1" type="uint" start_bit="48" bit_length="8" unit="" description="Suffix byte1"/>
793
    <variable name="SuffixByte0" type="uint" start_bit="54" bit_length="8" unit="" description="Suffix byte0"/>
1764 myhrman 794
      </variables>
795
    </command>
2229 linlun 796
 
1539 arune 797
    <command id="128" name="AnalogConfig" type="specific" module="inputAnalog" description="Configuration for analog input module">
798
      <variables>
2229 linlun 799
    <variable name="SensorId" type="uint" start_bit="0" bit_length="4" unit="" description="Which input to configure"/>
800
    <variable name="Setting" type="enum" start_bit="4" bit_length="2" unit="" description="">
801
      <value id="0" name="PeriodicMeasure"/>
802
      <value id="1" name="DigitalInput"/>
803
    </variable>
804
    <variable name="Pullup" type="enum" start_bit="6" bit_length="1" unit="" description="Enable pullup on sensor">
805
      <value id="0" name="Disable"/>
806
      <value id="1" name="Enable"/>
807
    </variable>
808
    <variable name="Reference" type="enum" start_bit="7" bit_length="1" unit="" description="Enable GND reference on sensor">
809
      <value id="0" name="Disable"/>
810
      <value id="1" name="Enable"/>
811
    </variable>
812
    <variable name="VoltageLowTh" type="float" start_bit="8" bit_length="16" unit="Volt" description="Low threshold for digital input"/>
813
    <variable name="VoltageHighTh" type="float" start_bit="24" bit_length="16" unit="Volt" description="High threshold for digital input"/>
814
    <variable name="Periodicity" type="uint" start_bit="40" bit_length="16" unit="Millisecond" description="The periodicity at which the sensorvalue is sent during periodic measure"/>
1539 arune 815
      </variables>
816
    </command>
2229 linlun 817
 
1110 linlun 818
    <command id="128" name="DEBUG" type="specific" module="PID" description="Debug data from PID regulator">
1017 linlun 819
      <variables>
2229 linlun 820
    <variable name="P_term" type="uint" start_bit="0" bit_length="16" unit="" description=""/>
821
    <variable name="I_term" type="uint" start_bit="16" bit_length="16" unit="" description=""/>
822
    <variable name="D_term" type="uint" start_bit="32" bit_length="16" unit="" description=""/>
823
    <variable name="Sum" type="int" start_bit="48" bit_length="16" unit="" description=""/>
824
      </variables>
825
    </command>
826
    <command id="129" name="CONFIG_SENSOR" type="specific" module="PID" description="Configure PID regulator, if message is sent with 0 data bytes, module will respond with current configuration">
827
      <variables>
828
    <variable name="sensorModuleType" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
829
    <variable name="sensorModuleId" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
830
    <variable name="sensorId" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
831
      </variables>
832
    </command>
833
    <command id="130" name="CONFIG_ACTUATOR" type="specific" module="PID" description="Configure PID regulator, if message is sent with 0 data bytes, module will respond with current configuration">
834
      <variables>
835
    <variable name="actuatorModuleType" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
836
    <variable name="actuatorModuleId" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
837
    <variable name="actuatorId" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
838
      </variables>
839
    </command>
840
    <command id="131" name="CONFIG_PARAMETER" type="specific" module="PID" description="Configure PID regulator constants, if message is sent with 0 data bytes, module will respond with current configuration">
841
      <variables>
2276 linlun 842
    <variable name="K_P" type="float" start_bit="0" bit_length="16" unit="" description=""/>
843
    <variable name="K_I" type="float" start_bit="16" bit_length="16" unit="" description=""/>
844
    <variable name="K_D" type="float" start_bit="32" bit_length="16" unit="" description=""/>
2229 linlun 845
    <variable name="TimeUnit" type="enum" start_bit="48" bit_length="1" unit="" description="">
846
      <value id="0" name="s"/>
847
      <value id="1" name="ms"/>
848
    </variable>
849
    <variable name="RegulatorTime" type="uint" start_bit="49" bit_length="15" unit="" description=""/>
850
      </variables>
851
    </command>
852
    <command id="132" name="PID_STATUS" type="specific" module="PID" description="information about the pid controller">
853
      <variables>
854
    <variable name="Measurment" type="float" start_bit="0" bit_length="16" unit="" description=""/>
855
    <variable name="Reference" type="float" start_bit="16" bit_length="16" unit="" description=""/>
856
    <variable name="PWM" type="uint" start_bit="32" bit_length="16" unit="" description=""/>
857
    <variable name="Sum" type="int" start_bit="48" bit_length="16" unit="" description=""/>
858
      </variables>
859
    </command>
860
 
2268 linlun 861
    <command id="133" name="P_I_term" type="specific" module="PID" description="Debug data from PID regulator">
862
      <variables>
863
    <variable name="P_term" type="IEEE32" start_bit="0" bit_length="32" unit="" description=""/>
864
    <variable name="I_term" type="IEEE32" start_bit="32" bit_length="32" unit="" description=""/>
865
      </variables>
866
    </command>
867
    <command id="134" name="D_term_Out" type="specific" module="PID" description="Debug data from PID regulator">
868
      <variables>
869
    <variable name="D_term" type="IEEE32" start_bit="0" bit_length="32" unit="" description=""/>
870
    <variable name="Output" type="IEEE32" start_bit="32" bit_length="32" unit="" description=""/>
871
      </variables>
872
    </command>
873
    <command id="135" name="CONFIG_PARAMETER_P_I" type="specific" module="PID" description="Configure PID regulator constants, if message is sent with 0 data bytes, module will respond with current configuration">
874
      <variables>
875
    <variable name="K_P" type="IEEE32" start_bit="0" bit_length="32" unit="" description=""/>
876
    <variable name="K_I" type="IEEE32" start_bit="32" bit_length="32" unit="" description=""/>
877
      </variables>
878
    </command>
879
    <command id="136" name="CONFIG_PARAMETER_D_T" type="specific" module="PID" description="Configure PID regulator constants, if message is sent with 0 data bytes, module will respond with current configuration">
880
      <variables>
881
    <variable name="K_D" type="IEEE32" start_bit="0" bit_length="32" unit="" description=""/>
882
    <variable name="TimeUnit" type="enum" start_bit="48" bit_length="1" unit="" description="">
883
      <value id="0" name="s"/>
884
      <value id="1" name="ms"/>
885
    </variable>
886
    <variable name="RegulatorTime" type="uint" start_bit="49" bit_length="15" unit="" description=""/>
887
      </variables>
888
    </command>
2276 linlun 889
    <command id="137" name="OutMinMax" type="specific" module="PID" description="Set minimum and maximum PWM output from controller">
890
      <variables>
891
    <variable name="Min" type="IEEE32" start_bit="0" bit_length="32" unit="" description=""/>
892
    <variable name="Max" type="IEEE32" start_bit="32" bit_length="32" unit="" description=""/>
893
      </variables>
894
    </command>
2268 linlun 895
 
2229 linlun 896
    <command id="128" name="CONFIG" type="specific" module="SlowPWM" description="Configure PWM output, if message is sent with 0 data bytes, module will respond with current configuration">
897
      <variables>
898
    <variable name="pwmPeriod" type="uint" start_bit="0" bit_length="16" unit="" description=""/>
899
    <variable name="pwmDefaultValue" type="uint" start_bit="16" bit_length="16" unit="" description=""/>
900
    <variable name="DefaultState" type="enum" start_bit="32" bit_length="2" unit="" description="">
901
      <value id="0" name="LOW"/>
902
      <value id="1" name="HIGH"/>
903
      <value id="2" name="TRISTATE"/>
904
    </variable>
905
    <variable name="StartUpState" type="enum" start_bit="34" bit_length="1" unit="" description="">
906
      <value id="0" name="ON"/>
907
      <value id="1" name="OFF"/>
908
    </variable>
909
      </variables>
910
    </command>
911
 
912
    <command id="128" name="LCD_Clear" type="specific" module="KS0108" description="Clear LCD">
913
      <variables>
914
    <variable name="Inverted" type="enum" start_bit="0" bit_length="1" unit="" description="Set to 1 of you want an inverted screen">
1051 linlun 915
      <value id="0" name="Standard"/>
2229 linlun 916
      <value id="1" name="Inverted"/>
1051 linlun 917
    </variable>
1017 linlun 918
      </variables>
919
    </command>
1006 linlun 920
    <command id="129" name="LCD_Cursor" type="specific" module="KS0108" description="Set LCD cursor position">
921
      <variables>
2229 linlun 922
    <variable name="X" type="uint" start_bit="0" bit_length="8" unit="" description="Char position in x direction"/>
923
    <variable name="Y" type="uint" start_bit="8" bit_length="8" unit="" description="Char position in y direction"/>
1051 linlun 924
    <variable name="Inverted" type="enum" start_bit="16" bit_length="1" unit="" description="Set to 1 of you want an inverted output">
925
      <value id="0" name="Standard"/>
2229 linlun 926
      <value id="1" name="Inverted"/>
1051 linlun 927
    </variable>
928
    <variable name="Transparent" type="enum" start_bit="17" bit_length="1" unit="" description="Set to 1 of you want to keep screen background">
929
      <value id="0" name="Standard"/>
930
      <value id="1" name="Transparent"/>
931
    </variable>
1006 linlun 932
      </variables>
933
    </command>
1019 linlun 934
    <command id="130" name="LCD_Text" type="specific" module="KS0108" description="Print text on LCD on current postion, according to the latest LCD_Cursor command">
1006 linlun 935
      <variables>
2229 linlun 936
    <variable name="Text" type="ascii" start_bit="0" bit_length="64" unit="" description=""/>
1006 linlun 937
      </variables>
938
    </command>
1019 linlun 939
    <command id="131" name="LCD_Invert" type="specific" module="KS0108" description="Invert LCD">
940
      <variables>
2229 linlun 941
    <variable name="Inverted" type="enum" start_bit="0" bit_length="1" unit="" description="Set to 1 of you want an inverted screen">
1051 linlun 942
      <value id="0" name="Standard"/>
2229 linlun 943
      <value id="1" name="Inverted"/>
1051 linlun 944
    </variable>
1019 linlun 945
      </variables>
946
    </command>
1006 linlun 947
    <command id="132" name="LCD_Backlight" type="specific" module="KS0108" description="Set LCD backlight brightness">
948
      <variables>
2229 linlun 949
    <variable name="Strength" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1427 linlun 950
    <variable name="AutoLight" type="enum" start_bit="15" bit_length="1" unit="" description="">
2229 linlun 951
      <value id="0" name="OFF"/>
952
      <value id="1" name="ON"/>
1427 linlun 953
    </variable>
1006 linlun 954
      </variables>
955
    </command>
1031 linlun 956
    <command id="133" name="LCD_TextAt" type="specific" module="KS0108" description="Print text on LCD">
1006 linlun 957
      <variables>
2229 linlun 958
    <variable name="Inverted" type="enum" start_bit="0" bit_length="1" unit="" description="Set to 1 of you want an inverted screen">
1051 linlun 959
      <value id="0" name="Standard"/>
2229 linlun 960
      <value id="1" name="Inverted"/>
1051 linlun 961
    </variable>
962
    <variable name="Transparent" type="enum" start_bit="1" bit_length="1" unit="" description="Set to 1 of you want to keep screen background">
963
      <value id="0" name="Standard"/>
964
      <value id="1" name="Transparent"/>
965
    </variable>  
1031 linlun 966
    <variable name="X" type="uint" start_bit="2" bit_length="6" unit="" description=""/>
2229 linlun 967
    <variable name="Y" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
968
    <variable name="Text" type="ascii" start_bit="16" bit_length="48" unit="" description=""/>
1006 linlun 969
      </variables>
970
    </command>
1031 linlun 971
    <command id="134" name="LCD_DrawRect" type="specific" module="KS0108" description="Draw a rectangle on LCD">
972
      <variables>
2229 linlun 973
    <variable name="Inverted" type="enum" start_bit="0" bit_length="1" unit="" description="Set to 1 of you want an inverted screen">
1051 linlun 974
      <value id="0" name="Standard"/>
2229 linlun 975
      <value id="1" name="Inverted"/>
1051 linlun 976
    </variable>
977
    <variable name="Fill" type="enum" start_bit="1" bit_length="1" unit="" description="Set to 1 of you want the rectangle filled">
978
      <value id="0" name="NoFill"/>
979
      <value id="1" name="Fill"/>
980
    </variable>  
1031 linlun 981
    <variable name="X" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
2229 linlun 982
    <variable name="Y" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1031 linlun 983
    <variable name="Width" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
984
    <variable name="Height" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
985
    <variable name="Radius" type="uint" start_bit="40" bit_length="8" unit="" description="Only valid for non-fill rectangles"/>
986
      </variables>
2229 linlun 987
    </command>
988
    <command id="135" name="LCD_DrawLine" type="specific" module="KS0108" description="Draw a line on LCD">
989
      <variables>
990
    <variable name="Inverted" type="enum" start_bit="0" bit_length="1" unit="" description="Set to 1 of you want an inverted screen">
991
      <value id="0" name="Standard"/>
992
      <value id="1" name="Inverted"/>
993
    </variable>
994
    <variable name="X1" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
995
    <variable name="Y1" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
996
    <variable name="X2" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
997
    <variable name="Y2" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
998
      </variables>
999
    </command>  
1000
    <command id="136" name="LCD_DrawCircle" type="specific" module="KS0108" description="Draw a circle on LCD">
1001
      <variables>
1002
    <variable name="Inverted" type="enum" start_bit="0" bit_length="1" unit="" description="Set to 1 of you want an inverted screen">
1003
      <value id="0" name="Standard"/>
1004
      <value id="1" name="Inverted"/>
1005
    </variable>
1006
    <variable name="Xcentre" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1007
    <variable name="Ycentre" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1008
    <variable name="Radius" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1009
      </variables>
1010
    </command>    
1031 linlun 1011
    <command id="137" name="LCD_InvertRect" type="specific" module="KS0108" description="Invert pixels in an rectangle on the LCD">
1012
      <variables>
1013
    <variable name="X" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
2229 linlun 1014
    <variable name="Y" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1031 linlun 1015
    <variable name="Width" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1016
    <variable name="Height" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1017
      </variables>
2229 linlun 1018
    </command>    
1251 linlun 1019
    <command id="138" name="LCD_New_Image" type="specific" module="KS0108" description="Store a new image in eeprom">
1020
      <variables>
1021
    <variable name="image_id" type="uint" start_bit="0" bit_length="8" unit="" description="the new image id"/>
2229 linlun 1022
    <variable name="size_X" type="uint" start_bit="8" bit_length="8" unit="" description="Size in x direction"/>
1023
    <variable name="size_Y" type="uint" start_bit="16" bit_length="8" unit="" description="Size in y direction"/>
1251 linlun 1024
      </variables>
1025
    </command>
2229 linlun 1026
    <command id="139" name="LCD_Ack" type="specific" module="KS0108" description="Data correctly received">
1251 linlun 1027
      <variables>
1028
    <variable name="packet_id" type="uint" start_bit="0" bit_length="8" unit="" description="Id of the packet that is acknoleged"/>
1029
      </variables>
1030
    </command>
2229 linlun 1031
    <command id="140" name="LCD_Error" type="specific" module="KS0108" description="Data error"/>  
1032
    <command id="141" name="LCD_Image_Data" type="specific" module="KS0108" description="Data"/>
1033
    <command id="141" name="LCD_Image_Data_7" type="specific" module="KS0108" description="Data">
1251 linlun 1034
      <variables>
2229 linlun 1035
    <variable name="Id" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1036
    <variable name="Data0" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1037
    <variable name="Data1" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1038
    <variable name="Data2" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1039
    <variable name="Data3" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1040
    <variable name="Data4" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
1041
    <variable name="Data5" type="uint" start_bit="48" bit_length="8" unit="" description=""/>
1251 linlun 1042
    <variable name="Data6" type="uint" start_bit="56" bit_length="8" unit="" description=""/>
1043
      </variables>
1044
    </command>
1045
    <command id="141" name="LCD_Image_Data_6" type="specific" module="KS0108" description="Data">
1046
      <variables>
2229 linlun 1047
    <variable name="Id" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1048
    <variable name="Data0" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1049
    <variable name="Data1" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1050
    <variable name="Data2" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1051
    <variable name="Data3" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1052
    <variable name="Data4" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
1053
    <variable name="Data5" type="uint" start_bit="48" bit_length="8" unit="" description=""/>
1251 linlun 1054
      </variables>
1055
    </command>
1056
    <command id="141" name="LCD_Image_Data_5" type="specific" module="KS0108" description="Data">
1057
      <variables>
2229 linlun 1058
    <variable name="Id" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1059
    <variable name="Data0" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1060
    <variable name="Data1" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1061
    <variable name="Data2" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1062
    <variable name="Data3" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1063
    <variable name="Data4" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
1251 linlun 1064
      </variables>
1065
    </command>
1066
    <command id="141" name="LCD_Image_Data_4" type="specific" module="KS0108" description="Data">
1067
      <variables>
2229 linlun 1068
    <variable name="Id" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1069
    <variable name="Data0" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1070
    <variable name="Data1" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1071
    <variable name="Data2" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1072
    <variable name="Data3" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1251 linlun 1073
      </variables>
1074
    </command>
1075
    <command id="141" name="LCD_Image_Data_3" type="specific" module="KS0108" description="Data">
1076
      <variables>
2229 linlun 1077
    <variable name="Id" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1078
    <variable name="Data0" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1079
    <variable name="Data1" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1080
    <variable name="Data2" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1251 linlun 1081
      </variables>
1082
    </command>
1083
    <command id="141" name="LCD_Image_Data_2" type="specific" module="KS0108" description="Data">
1084
      <variables>
2229 linlun 1085
    <variable name="Id" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1086
    <variable name="Data0" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1087
    <variable name="Data1" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1251 linlun 1088
      </variables>
1089
    </command>
1090
    <command id="141" name="LCD_Image_Data_1" type="specific" module="KS0108" description="Data">
1091
      <variables>
2229 linlun 1092
    <variable name="Id" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1093
    <variable name="Data0" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1251 linlun 1094
      </variables>
1095
    </command>
1096
    <command id="142" name="LCD_Data_id_Error" type="specific" module="KS0108" description="Wrong data id received">
1097
      <variables>
1098
    <variable name="id" type="uint" start_bit="0" bit_length="8" unit="" description="The expected id"/>
1099
      </variables>
1100
    </command>
2229 linlun 1101
    <command id="143" name="LCD_Data_Done" type="specific" module="KS0108" description="All data sent">
1251 linlun 1102
      <variables>
1103
      </variables>
1104
    </command>
2229 linlun 1105
 
1440 arune 1106
    <command id="128" name="Motion" type="specific" module="PIR" description="Motion and brightness from PIR-sensor">
2229 linlun 1107
      <variables>
1108
    <variable name="Id" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1109
    <variable name="Brightness" type="uint" start_bit="8" bit_length="16" unit="" description=""/>
1110
    <variable name="MotionDetect" type="enum" start_bit="24" bit_length="8" unit="" description="">
1111
      <value id="0" name="NoMotion"/>
1112
      <value id="1" name="MotionDetected"/>
1113
    </variable>
1440 arune 1114
      </variables>
2229 linlun 1115
    </command>  
1251 linlun 1116
 
1074 arune 1117
    <command id="128" name="Demo" type="specific" module="Dimmer230" description="Fade to x+steps, then to x-steps and then back to x. If x is close to, or at, top or bottom then fade more to the other direction">
2229 linlun 1118
      <variables>
1119
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1120
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms"/>
1121
    <variable name="Steps" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
950 runge 1122
      </variables>
2229 linlun 1123
    </command>  
1072 arune 1124
    <command id="129" name="Start_Fade" type="specific" module="Dimmer230" description="Fade in a direction and don't stop until another command is received or top/bottom is reached">
2229 linlun 1125
      <variables>
1126
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1127
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1128
    <variable name="Direction" type="enum" start_bit="16" bit_length="8" unit="" description="">
1129
      <value id="0" name="Decrease"/>
1130
      <value id="1" name="Increase"/>
1131
    </variable>
950 runge 1132
      </variables>
1133
    </command>
1072 arune 1134
    <command id="130" name="Stop_Fade" type="specific" module="Dimmer230" description="If a fade is in progress, then stop">
950 runge 1135
      <variables>
2229 linlun 1136
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
950 runge 1137
      </variables>
1138
    </command>
1072 arune 1139
    <command id="131" name="Abs_Fade" type="specific" module="Dimmer230" description="Fade to a defined value, stops when another command is received">
2229 linlun 1140
      <variables>
1141
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1142
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1143
    <variable name="EndValue" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
950 runge 1144
      </variables>
1145
    </command>
1072 arune 1146
    <command id="132" name="Rel_Fade" type="specific" module="Dimmer230" description="Fade a number of steps in a defined direction, stops when another command is received or top/bottom is reached">
2229 linlun 1147
      <variables>
1148
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1149
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1150
    <variable name="Direction" type="enum" start_bit="16" bit_length="8" unit="" description="">
1151
      <value id="0" name="Decrease"/>
1152
      <value id="1" name="Increase"/>
1153
    </variable>
1154
    <variable name="Steps" type="uint" start_bit="24" bit_length="8" unit="" description="Number of steps to fade"/>
950 runge 1155
      </variables>
1156
    </command>
1072 arune 1157
    <command id="133" name="Netinfo" type="specific" module="Dimmer230" description="Information about the connected net power">
2229 linlun 1158
      <variables>
1159
    <variable name="Connection" type="enum" start_bit="0" bit_length="1" unit="" description="If the dimmer is connected to net power">
1160
      <value id="0" name="Disconnected"/>
1161
      <value id="1" name="Connected"/>
1613 linlun 1162
    </variable>
2229 linlun 1163
    <variable name="Frequency" type="enum" start_bit="1" bit_length="2" unit="" description="Frequency of the net power">
1164
      <value id="0" name="Error_Unknown"/>
1165
      <value id="1" name="50Hz"/>
1166
      <value id="2" name="60Hz"/>
1613 linlun 1167
    </variable>
1168
    <variable name="DimmerValue" type="uint" start_bit="8" bit_length="8" unit="" description="Current dimmer value"/>
1615 linlun 1169
    <variable name="Channel" type="uint" start_bit="16" bit_length="8" unit="" description="Dimmer channel"/>
1072 arune 1170
      </variables>
1171
    </command>
2229 linlun 1172
 
1423 linlun 1173
    <command id="128" name="Demo" type="specific" module="hwPWM" description="Fade to x+steps, then to x-steps and then back to x. If x is close to, or at, top or bottom then fade more to the other direction">
2229 linlun 1174
      <variables>
1175
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1176
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms"/>
1177
    <variable name="Steps" type="uint" start_bit="16" bit_length="16" unit="" description="number of percent to step in %/100"/>
1423 linlun 1178
      </variables>
1179
    </command>
1180
    <command id="129" name="Start_Fade" type="specific" module="hwPWM" description="Fade in a direction and don't stop until another command is received or top/bottom is reached">
2229 linlun 1181
      <variables>
1182
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1183
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1184
    <variable name="Direction" type="enum" start_bit="16" bit_length="8" unit="" description="">
1185
      <value id="0" name="Decrease"/>
1186
      <value id="1" name="Increase"/>
1187
    </variable>
1423 linlun 1188
      </variables>
1189
    </command>
1190
    <command id="130" name="Stop_Fade" type="specific" module="hwPWM" description="If a fade is in progress, then stop">
1191
      <variables>
2229 linlun 1192
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1423 linlun 1193
      </variables>
1194
    </command>
1195
    <command id="131" name="Abs_Fade" type="specific" module="hwPWM" description="Fade to a defined value, stops when another command is received">
2229 linlun 1196
      <variables>
1197
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1198
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1199
    <variable name="EndValue" type="uint" start_bit="16" bit_length="16" unit="" description="end value in percent in %/100"/>
1423 linlun 1200
      </variables>
1201
    </command>
1202
    <command id="132" name="Rel_Fade" type="specific" module="hwPWM" description="Fade a number of steps in a defined direction, stops when another command is received or top/bottom is reached">
2229 linlun 1203
      <variables>
1204
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1205
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1206
    <variable name="Direction" type="enum" start_bit="16" bit_length="8" unit="" description="">
1207
      <value id="0" name="Decrease"/>
1208
      <value id="1" name="Increase"/>
1209
    </variable>
1210
    <variable name="Steps" type="uint" start_bit="24" bit_length="16" unit="" description="Number of percent to step in %/100"/>
1423 linlun 1211
      </variables>
1212
    </command>
2229 linlun 1213
 
1714 arune 1214
    <command id="128" name="Demo" type="specific" module="PCAPWM" description="Fade to x+steps, then to x-steps and then back to x. If x is close to, or at, top or bottom then fade more to the other direction">
2229 linlun 1215
      <variables>
1216
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1217
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms"/>
1218
    <variable name="Steps" type="uint" start_bit="16" bit_length="16" unit="" description="number of percent to step in %/100"/>
1714 arune 1219
      </variables>
1220
    </command>
1221
    <command id="129" name="Start_Fade" type="specific" module="PCAPWM" description="Fade in a direction and don't stop until another command is received or top/bottom is reached">
2229 linlun 1222
      <variables>
1223
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1224
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1225
    <variable name="Direction" type="enum" start_bit="16" bit_length="8" unit="" description="">
1226
      <value id="0" name="Decrease"/>
1227
      <value id="1" name="Increase"/>
1228
    </variable>
1714 arune 1229
      </variables>
1230
    </command>
1231
    <command id="130" name="Stop_Fade" type="specific" module="PCAPWM" description="If a fade is in progress, then stop">
1232
      <variables>
2229 linlun 1233
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1714 arune 1234
      </variables>
1235
    </command>
1236
    <command id="131" name="Abs_Fade" type="specific" module="PCAPWM" description="Fade to a defined value, stops when another command is received">
2229 linlun 1237
      <variables>
1238
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1239
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1240
    <variable name="EndValue" type="uint" start_bit="16" bit_length="16" unit="" description="end value in percent in %/100"/>
1714 arune 1241
      </variables>
1242
    </command>
1243
    <command id="132" name="Rel_Fade" type="specific" module="PCAPWM" description="Fade a number of steps in a defined direction, stops when another command is received or top/bottom is reached">
2229 linlun 1244
      <variables>
1245
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1246
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1247
    <variable name="Direction" type="enum" start_bit="16" bit_length="8" unit="" description="">
1248
      <value id="0" name="Decrease"/>
1249
      <value id="1" name="Increase"/>
1250
    </variable>
1251
    <variable name="Steps" type="uint" start_bit="24" bit_length="16" unit="" description="Number of percent to step in %/100"/>
1714 arune 1252
      </variables>
1253
    </command>
1254
 
2229 linlun 1255
    <command id="128" name="Demo" type="specific" module="RGBW" description="Fade to x+steps, then to x-steps and then back to x. If x is close to, or at, top or bottom then fade more to the other direction">
1256
      <variables>
1257
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1258
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms"/>
1259
    <variable name="Steps" type="uint" start_bit="16" bit_length="16" unit="" description="number of percent to step in %/100"/>
1438 linlun 1260
      </variables>
1261
    </command>
1262
    <command id="129" name="Start_Fade" type="specific" module="RGBW" description="Fade in a direction and don't stop until another command is received or top/bottom is reached">
2229 linlun 1263
      <variables>
1264
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1265
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1266
    <variable name="Direction" type="enum" start_bit="16" bit_length="8" unit="" description="">
1267
      <value id="0" name="Decrease"/>
1268
      <value id="1" name="Increase"/>
1269
    </variable>
1438 linlun 1270
      </variables>
1271
    </command>
1272
    <command id="130" name="Stop_Fade" type="specific" module="RGBW" description="If a fade is in progress, then stop">
1273
      <variables>
2229 linlun 1274
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1438 linlun 1275
      </variables>
1276
    </command>
1277
    <command id="131" name="Abs_Fade" type="specific" module="RGBW" description="Fade to a defined value, stops when another command is received">
2229 linlun 1278
      <variables>
1279
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1280
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1281
    <variable name="EndValue" type="uint" start_bit="16" bit_length="16" unit="" description="end value in percent in %/100"/>
1438 linlun 1282
      </variables>
1283
    </command>
1284
    <command id="132" name="Rel_Fade" type="specific" module="RGBW" description="Fade a number of steps in a defined direction, stops when another command is received or top/bottom is reached">
2229 linlun 1285
      <variables>
1286
    <variable name="Channel" type="uint" start_bit="0" bit_length="8" unit="" description="Dimmer channel"/>
1287
    <variable name="Speed" type="uint" start_bit="8" bit_length="8" unit="" description="Speed is 1/127 steps per 10ms up to 127 steps per 10ms, set speed to 0 if no fading is to be used (go to target immediately)"/>
1288
    <variable name="Direction" type="enum" start_bit="16" bit_length="8" unit="" description="">
1289
      <value id="0" name="Decrease"/>
1290
      <value id="1" name="Increase"/>
1291
    </variable>
1292
    <variable name="Steps" type="uint" start_bit="24" bit_length="16" unit="" description="Number of percent to step in %/100"/>
1438 linlun 1293
      </variables>
1294
    </command>
2229 linlun 1295
 
1521 arune 1296
    <command id="128" name="Id" type="specific" module="identification" description="Broadcast this nodes ID">
2229 linlun 1297
      <variables>
1298
    <variable name="HardwareId" type="uint" start_bit="0" bit_length="32" unit="" description=""/>
1299
      </variables>
1521 arune 1300
    </command>
2229 linlun 1301
 
1177 linlun 1302
    <command id="128" name="CONFIG" type="specific" module="softPWM" description="Configure the PWM">
2229 linlun 1303
      <variables>
1304
    <variable name="Period" type="uint" start_bit="0" bit_length="16" unit="ms" description=""/>
1305
    <variable name="Resolution" type="uint" start_bit="16" bit_length="8" unit="ms" description=""/>
1306
      </variables>
1156 linlun 1307
    </command>
2229 linlun 1308
 
1284 arune 1309
    <command id="128" name="Gesture" type="specific" module="Touch" description="Parsed touch data as a gesture">
2229 linlun 1310
      <variables>
1311
    <variable name="f1" type="uint" start_bit="0" bit_length="8" unit="#" description="Indicates the number of intersection points between an input gesture g(x) and the straight line f(x) which connects the first and last point of the gesture"/>
1312
    <variable name="f7" type="uint" start_bit="8" bit_length="8" unit="#" description="Indicates the number of intersection points between an input gesture g(x) and all horizontal lines yi, where i is between 0 and n, that constitute a gesture"/>
1313
    <variable name="f3" type="enum" start_bit="16" bit_length="1" unit="" description="Indicates the sign value of area gap between g(x) and f(x)">
1314
      <value id="0" name="M"/>
1315
      <value id="1" name="P"/>
1316
    </variable>
1317
    <variable name="f4" type="enum" start_bit="17" bit_length="1" unit="" description="Represents the sign value of the sum of the x coordinates of all the points that constitute strokes minus the x coordinates of the last point">
1318
      <value id="0" name="M"/>
1319
      <value id="1" name="P"/>
1320
    </variable>
1321
    <variable name="f5" type="enum" start_bit="18" bit_length="1" unit="" description="Checks the sign value of the sum of the x coordinates of all the points that constitute strokes minus x coordinates of the first point">
1322
      <value id="0" name="M"/>
1323
      <value id="1" name="P"/>
1324
    </variable>
1325
    <variable name="f6" type="enum" start_bit="19" bit_length="1" unit="" description="Indicates the sign value of the y coordinates of the last point minus y coordinates of the first point">
1326
      <value id="0" name="M"/>
1327
      <value id="1" name="P"/>
1328
    </variable>
1329
    <variable name="f8" type="enum" start_bit="20" bit_length="1" unit="" description="Checks whether or not x coordinates of all the points except for the first point and the last point is between x0 and xn">
1330
      <value id="0" name="M"/>
1331
      <value id="1" name="P"/>
1332
    </variable>
1333
    <variable name="f9" type="enum" start_bit="21" bit_length="1" unit="" description="Represents the sign value of the multiplication of x coordinates of the first point and the last point minus the mediate value of x coordinates of all the points">
1334
      <value id="0" name="M"/>
1335
      <value id="1" name="P"/>
1336
    </variable>
1337
    <variable name="f2" type="enum" start_bit="22" bit_length="2" unit="" description="Checks if the y coordinates of the points which exist between the intersection point and the last point are greater than the y coordinates of the intersection point">
1338
      <value id="0" name="M"/>
1339
      <value id="1" name="P"/>
1340
      <value id="2" name="U"/>
1341
    </variable>
1342
      </variables>
1277 arune 1343
    </command>
1284 arune 1344
    <command id="129" name="Raw" type="specific" module="Touch" description="Raw touch data">
2229 linlun 1345
      <variables>
1346
    <variable name="Status" type="enum" start_bit="0" bit_length="8" unit="" description="Gives the current push status">
1347
      <value id="1" name="Pressed"/>
1348
      <value id="0" name="Released"/>
1349
    </variable>
1350
    <variable name="X" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1351
    <variable name="Y" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1352
      </variables>
1284 arune 1353
    </command>
1733 dberg 1354
 
1355
    <command id="128" name="Position" type="specific" module="linearAct" description="Set and get position">
2229 linlun 1356
      <variables>
1357
    <variable name="Position" type="uint" start_bit="0" bit_length="16" unit="" description=""/>
1358
    <variable name="Direction" type="uint" start_bit="16" bit_length="8" unit="" description="">
1359
      <value id="0" name="NotMoving"/>
1360
      <value id="1" name="MovingUp"/>
1361
      <value id="2" name="MovingDown"/>
1362
    </variable>
1733 dberg 1363
      </variables>
1364
    </command>
1365
    <command id="129" name="Limits" type="specific" module="linearAct" description="Set and get limits">
2229 linlun 1366
      <variables>
1367
    <variable name="Min" type="uint" start_bit="0" bit_length="16" unit="" description=""/>
1368
    <variable name="Low" type="uint" start_bit="16" bit_length="16" unit="" description=""/>  
1369
    <variable name="High" type="uint" start_bit="32" bit_length="16" unit="" description=""/>
1370
    <variable name="Max" type="uint" start_bit="48" bit_length="16" unit="" description=""/>
1733 dberg 1371
      </variables>
1372
    </command>
1373
    <command id="130" name="Calibration" type="specific" module="linearAct" description="Start calibration">
2229 linlun 1374
      <variables>
1375
    <variable name="OptionalPosition" type="uint" start_bit="0" bit_length="16" unit="" description="Option to set current value for position"/>
1733 dberg 1376
      </variables>
1377
    </command>
2229 linlun 1378
 
1728 cougar 1379
    <command id="128" name="setCounter" type="specific" module="counter" description="Set the counter value on the counter module">
1380
      <variables>
2229 linlun 1381
    <variable name="PinId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1382
    <variable name="Count" type="uint" start_bit="8" bit_length="32" unit="" description=""/>
1728 cougar 1383
      </variables>
1384
    </command>
2229 linlun 1385
 
1773 arune 1386
    <command id="128" name="ImageDataModule1" type="specific" module="DotMatrix" description="">
1387
      <variables>
2229 linlun 1388
    <variable name="Row1" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1389
    <variable name="Row2" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1390
    <variable name="Row3" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1391
    <variable name="Row4" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1392
    <variable name="Row5" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1393
    <variable name="Row6" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
1394
    <variable name="Row7" type="uint" start_bit="48" bit_length="8" unit="" description=""/>
1395
    <variable name="Row8" type="uint" start_bit="56" bit_length="8" unit="" description=""/>
1773 arune 1396
      </variables>
1397
    </command>
1398
    <command id="129" name="ImageDataModule2" type="specific" module="DotMatrix" description="">
1399
      <variables>
2229 linlun 1400
    <variable name="Row1" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1401
    <variable name="Row2" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1402
    <variable name="Row3" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1403
    <variable name="Row4" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1404
    <variable name="Row5" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1405
    <variable name="Row6" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
1406
    <variable name="Row7" type="uint" start_bit="48" bit_length="8" unit="" description=""/>
1407
    <variable name="Row8" type="uint" start_bit="56" bit_length="8" unit="" description=""/>
1773 arune 1408
      </variables>
1409
    </command>
1410
    <command id="130" name="ImageDataModule3" type="specific" module="DotMatrix" description="">
1411
      <variables>
2229 linlun 1412
    <variable name="Row1" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1413
    <variable name="Row2" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1414
    <variable name="Row3" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1415
    <variable name="Row4" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1416
    <variable name="Row5" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1417
    <variable name="Row6" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
1418
    <variable name="Row7" type="uint" start_bit="48" bit_length="8" unit="" description=""/>
1419
    <variable name="Row8" type="uint" start_bit="56" bit_length="8" unit="" description=""/>
1773 arune 1420
      </variables>
1421
    </command>
1422
    <command id="131" name="ImageDataModule4" type="specific" module="DotMatrix" description="">
1423
      <variables>
2229 linlun 1424
    <variable name="Row1" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1425
    <variable name="Row2" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1426
    <variable name="Row3" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1427
    <variable name="Row4" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1428
    <variable name="Row5" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1429
    <variable name="Row6" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
1430
    <variable name="Row7" type="uint" start_bit="48" bit_length="8" unit="" description=""/>
1431
    <variable name="Row8" type="uint" start_bit="56" bit_length="8" unit="" description=""/>
1773 arune 1432
      </variables>
1433
    </command>
2229 linlun 1434
 
2183 arune 1435
    <command id="128" name="setVolume" type="specific" module="water" description="Set the volume value on the water meter module">
1436
      <variables>
2229 linlun 1437
    <variable name="Volume" type="uint" start_bit="0" bit_length="32" unit="Liter" description=""/>
2183 arune 1438
      </variables>
1439
    </command>
2229 linlun 1440
 
2231 linlun 1441
    <command id="128" name="UltrasonicConfig" type="specific" module="ultrasonic" description="Configure an ultrasonic module to output 0 to 100%">
2229 linlun 1442
      <variables>
1443
    <variable name="SensorId" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1444
    <variable name="0Percent" type="uint" start_bit="8" bit_length="16" unit="mm" description=""/>
1445
    <variable name="100Percent" type="uint" start_bit="24" bit_length="16" unit="mm" description=""/>
1446
    <variable name="SensorMode" type="enum" start_bit="40" bit_length="8" unit="" description="">
1447
      <value id="0" name="Length"/>
1448
      <value id="1" name="Percent"/>
1449
    </variable>
1450
      </variables>
1451
    </command>
1452
 
946 runge 1453
  </commands>
1733 dberg 1454
 
1455
 
946 runge 1456
  <modules>
965 runge 1457
    <module id="0" name="Debug" class="tst"/>
946 runge 1458
    <module id="1" name="Default" class="def"/>
1459
    <module id="3" name="DS18x20" class="sns"/>
2021 arune 1460
    <module id="4" name="heatPower" class="sns"/>
946 runge 1461
    <module id="5" name="FOST02" class="sns"/>
1462
    <module id="6" name="BusVoltage" class="sns"/>
1463
    <module id="7" name="SimpleDTMF" class="sns"/>
1464
    <module id="8" name="Rotary" class="sns"/>
953 runge 1465
    <module id="9" name="HD44789" class="act"/>
1466
    <module id="10" name="Dimmer230" class="act"/>
1467
    <module id="11" name="KS0108" class="act"/>
954 runge 1468
    <module id="12" name="RGBdriver" class="act"/>
1389 arune 1469
    <module id="13" name="hwPWM" class="act"/>
992 arune 1470
    <module id="14" name="irReceive" class="sns"/>
1000 kribba 1471
    <module id="15" name="nmea" class="sns"/>
1054 runge 1472
    <module id="16" name="irTransmit" class="sns"/>
1098 linlun 1473
    <module id="17" name="TC1047A" class="sns"/>
1110 linlun 1474
    <module id="18" name="PID" class="act"/>
1475
    <module id="19" name="SlowPWM" class="act"/>
1121 linlun 1476
    <module id="20" name="power" class="sns"/>
1156 linlun 1477
    <module id="21" name="softPWM" class="act"/>
1277 arune 1478
    <module id="22" name="Touch" class="sns"/>
1417 linlun 1479
    <module id="23" name="RotaryHex" class="sns"/>
1419 linlun 1480
    <module id="24" name="output" class="act"/>
1481
    <module id="25" name="input" class="sns"/>
1438 linlun 1482
    <module id="26" name="RGBW" class="act"/>
1471 arune 1483
    <module id="27" name="irTransceive" class="sns"/>
1521 arune 1484
    <module id="28" name="identification" class="sns"/>
1709 arune 1485
    <module id="29" name="PCAPWM" class="act"/>
1266 pengi 1486
    <module id="30" name="ChnMaster" class="chn"/>
1269 pengi 1487
    <module id="31" name="ChnController" class="chn"/>
2032 pengi 1488
    <module id="32" name="rfid" class="sns"/>
2166 arune 1489
    <module id="33" name="water" class="sns"/>
2243 linlun 1490
    <module id="34" name="flower" class="sns"/>
2229 linlun 1491
 
1440 arune 1492
    <module id="45" name="PIR" class="sns"/>
1441 arune 1493
    <module id="46" name="TCN75A" class="sns"/>
1443 arune 1494
    <module id="47" name="VoltageCurrent" class="sns"/>
1448 myhrman 1495
    <module id="48" name="Serial" class="sns"/>
1511 arune 1496
    <module id="49" name="protectedOutput" class="sns"/>
1539 arune 1497
    <module id="50" name="inputAnalog" class="sns"/>
1551 leif 1498
    <module id="51" name="LM335" class="sns"/>
1565 leif 1499
    <module id="52" name="SH11" class="sns"/>
2229 linlun 1500
 
1501
 
1586 nattgris 1502
    <module id="55" name="NTC" class="sns"/>
1724 pengi 1503
    <module id="56" name="sigmadelta_dimmer" class="act"/>
1728 cougar 1504
    <module id="57" name="counter" class="sns"/>
1731 linlun 1505
    <module id="58" name="multiSwitch" class="act"/>
2229 linlun 1506
    <module id="59" name="linearAct" class="act"/>
1772 arune 1507
    <module id="60" name="DotMatrix" class="act"/>
1870 linlun 1508
    <module id="61" name="DHT11" class="sns"/>
1907 arune 1509
    <module id="62" name="rfTransceive" class="sns"/>
1982 linlun 1510
    <module id="63" name="qtouch" class="sns"/>
2225 linlun 1511
    <module id="64" name="ultrasonic" class="sns"/>
946 runge 1512
  </modules>
2166 arune 1513
 
1514
 
946 runge 1515
  <defines>
1516
    <define id="1" group="DirectionFlag" name="From_Owner"/>
1517
    <define id="0" group="DirectionFlag" name="To_Owner"/>
1518
  </defines>
2166 arune 1519
 
1520
 
986 runge 1521
  <nmt_messages>
1522
    <nmt_message id="0" name="Time"/>
1523
    <nmt_message id="4" name="Reset">
1524
      <variables>
2229 linlun 1525
    <variable name="HardwareId" type="uint" start_bit="0" bit_length="32" unit="" description=""/>
986 runge 1526
      </variables>
1527
    </nmt_message>
1528
    <nmt_message id="8" name="Bios_Start">
1529
      <variables>
2229 linlun 1530
    <variable name="BiosVersion" type="uint" start_bit="0" bit_length="16" unit="" description=""/>
1531
    <variable name="HasApplication" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1532
    <variable name="DeviceType" type="enum" start_bit="24" bit_length="8" unit="" description="">
1668 runge 1533
      <value id="0" name="unknown"/>
2229 linlun 1534
      <value id="1" name="atmega8"/>
1535
      <value id="2" name="atmega48"/>
1536
      <value id="3" name="atmega88"/>
1537
      <value id="4" name="atmega168"/>
1538
      <value id="5" name="atmega328p"/>
1539
    </variable>
1540
    <variable name="HardwareId" type="uint" start_bit="32" bit_length="32" unit="" description=""/>
986 runge 1541
      </variables>
1542
    </nmt_message>
1543
    <nmt_message id="12" name="Pgm_Start">
1544
      <variables>
2229 linlun 1545
    <variable name="Address0" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1546
    <variable name="Address1" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1547
    <variable name="Address2" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1548
    <variable name="Address3" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1549
    <variable name="HardwareId" type="uint" start_bit="32" bit_length="32" unit="" description=""/>
986 runge 1550
      </variables>
1551
    </nmt_message>
1023 arune 1552
    <nmt_message id="16" name="Pgm_Data">
986 runge 1553
      <variables>
2229 linlun 1554
    <variable name="Offset" type="uint" start_bit="0" bit_length="16" unit="" description=""/>
1555
    <variable name="Data" type="uint" start_bit="16" bit_length="48" unit="" description=""/>
986 runge 1556
      </variables>
1557
    </nmt_message>
1023 arune 1558
    <nmt_message id="16" name="Pgm_Data_48">
1559
      <variables>
2229 linlun 1560
    <variable name="Offset0" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1561
    <variable name="Offset1" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1562
    <variable name="Data0" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1563
    <variable name="Data1" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1564
    <variable name="Data2" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1565
    <variable name="Data3" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
1566
    <variable name="Data4" type="uint" start_bit="48" bit_length="8" unit="" description=""/>
1567
    <variable name="Data5" type="uint" start_bit="56" bit_length="8" unit="" description=""/>
1023 arune 1568
      </variables>
1569
    </nmt_message>
1570
    <nmt_message id="16" name="Pgm_Data_8">
1571
      <variables>
2229 linlun 1572
    <variable name="Offset0" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1573
    <variable name="Offset1" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1574
    <variable name="Data0" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1023 arune 1575
      </variables>
1576
    </nmt_message>
1577
    <nmt_message id="16" name="Pgm_Data_16">
1578
      <variables>
2229 linlun 1579
    <variable name="Offset0" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1580
    <variable name="Offset1" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1581
    <variable name="Data0" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1582
    <variable name="Data1" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1023 arune 1583
      </variables>
1584
    </nmt_message>
1585
    <nmt_message id="16" name="Pgm_Data_24">
1586
      <variables>
2229 linlun 1587
    <variable name="Offset0" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1588
    <variable name="Offset1" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1589
    <variable name="Data0" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1590
    <variable name="Data1" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1591
    <variable name="Data2" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1023 arune 1592
      </variables>
1593
    </nmt_message>
1015 arune 1594
    <nmt_message id="16" name="Pgm_Data_32">
1595
      <variables>
2229 linlun 1596
    <variable name="Offset0" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1597
    <variable name="Offset1" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1598
    <variable name="Data0" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1599
    <variable name="Data1" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1600
    <variable name="Data2" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1601
    <variable name="Data3" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
1015 arune 1602
      </variables>
1603
    </nmt_message>
1023 arune 1604
    <nmt_message id="16" name="Pgm_Data_40">
1015 arune 1605
      <variables>
2229 linlun 1606
    <variable name="Offset0" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1607
    <variable name="Offset1" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1608
    <variable name="Data0" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1609
    <variable name="Data1" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1610
    <variable name="Data2" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1611
    <variable name="Data3" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
1612
    <variable name="Data4" type="uint" start_bit="48" bit_length="8" unit="" description=""/>
1015 arune 1613
      </variables>
1614
    </nmt_message>
986 runge 1615
    <nmt_message id="20" name="Pgm_End"/>
1616
    <nmt_message id="24" name="Pgm_Copy">
1617
      <variables>
2229 linlun 1618
    <variable name="Source0" type="uint" start_bit="0" bit_length="8" unit="" description=""/>
1619
    <variable name="Source1" type="uint" start_bit="8" bit_length="8" unit="" description=""/>
1620
    <variable name="Destination0" type="uint" start_bit="16" bit_length="8" unit="" description=""/>
1621
    <variable name="Destination1" type="uint" start_bit="24" bit_length="8" unit="" description=""/>
1622
    <variable name="Length0" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
1623
    <variable name="Length1" type="uint" start_bit="40" bit_length="8" unit="" description=""/>
986 runge 1624
      </variables>
1625
    </nmt_message>
1626
    <nmt_message id="28" name="Pgm_Ack">
1627
      <variables>
2229 linlun 1628
    <variable name="Data" type="uint" start_bit="0" bit_length="16" unit="" description=""/>
986 runge 1629
      </variables>
1630
    </nmt_message>
1631
    <nmt_message id="32" name="Pgm_Nack">
1632
      <variables>
2229 linlun 1633
    <variable name="Offset" type="uint" start_bit="0" bit_length="16" unit="" description=""/>
986 runge 1634
      </variables>
1635
    </nmt_message>
1636
    <nmt_message id="36" name="Start_App" description="Send to node to start the application in the node">
1637
      <variables>
2229 linlun 1638
    <variable name="HardwareId" type="uint" start_bit="0" bit_length="32" unit="" description=""/>
986 runge 1639
      </variables>
1640
    </nmt_message>
1641
    <nmt_message id="40" name="App_Start" description="Sent by the application in a node when it starts">
1642
      <variables>
2229 linlun 1643
    <variable name="HardwareId" type="uint" start_bit="0" bit_length="32" unit="" description=""/>
986 runge 1644
      </variables>
1645
    </nmt_message>
1646
    <nmt_message id="44" name="Heartbeat">
1647
      <variables>
2229 linlun 1648
    <variable name="HardwareId" type="uint" start_bit="0" bit_length="32" unit="" description=""/>
1649
    <variable name="NumberOfModules" type="uint" start_bit="32" bit_length="8" unit="" description=""/>
986 runge 1650
      </variables>
1651
    </nmt_message>
1652
  </nmt_messages>
946 runge 1653
</root>