Changeset 152
- Timestamp:
- 2015-05-01 17:21:01 (10 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/J_RFXtrx.js ¶
r142 r152 624 624 [ "RFY0/", "PROGRAM", "Program" ], 625 625 [ "RFY0/", "LOWER_LIMIT", "Set lower limit" ], 626 [ "RFY0/", "UPPER_LIMIT", "Set upper limit" ] 626 [ "RFY0/", "UPPER_LIMIT", "Set upper limit" ], 627 [ "RFY0/", "VENETIAN_US_ANGLE_PLUS", "Change angle + (Venetian US)" ], 628 [ "RFY0/", "VENETIAN_US_ANGLE_MINUS", "Change angle - (Venetian US)" ], 629 [ "RFY0/", "VENETIAN_EU_ANGLE_PLUS", "Change angle + (Venetian EU)" ], 630 [ "RFY0/", "VENETIAN_EU_ANGLE_MINUS", "Change angle - (Venetian EU)" ], 631 [ "RFY0/", "ENABLE_DETECTOR", "Enable sun/wind detector" ], 632 [ "RFY0/", "DISABLE_DETECTOR", "Disable sun detector" ] 627 633 ], 628 634 -
TabularUnified trunk/L_RFXtrx.lua ¶
r150 r152 24 24 25 25 RESPONSE_MODE_COMMAND = { 0x01, 0x00, 13, nil, nil, nil }, 26 UNKNOWN_RTS_REMOTE = { 0x01, 0x01, 13, nil, nil, nil }, 26 27 WRONG_COMMAND = { 0x01, 0xFF, 13, nil, nil, nil }, 27 28 … … 298 299 VAR_REPEAT_EVENT = { "upnp-rfxcom-com:serviceId:rfxtrx1", "RepeatEvent", false, false, true }, 299 300 VAR_NBR_DEVICES = { "upnp-rfxcom-com:serviceId:rfxtrx1", "NbrDevices", false, false, true }, 300 VAR_DEBUG_LOGS = { "upnp-rfxcom-com:serviceId:rfxtrx1", "DebugLogs", false, false, true } 301 VAR_DEBUG_LOGS = { "upnp-rfxcom-com:serviceId:rfxtrx1", "DebugLogs", false, false, true }, 302 VAR_RFY_MODE = { "upnp-rfxcom-com:serviceId:rfxtrx1", "RFYMode", false, false, true } 301 303 } 302 304 … … 308 310 -- 4) Prefix for the device id 309 311 -- 5) a boolean indicating if variable "Association" must be created for this device type 310 -- 6) a boolean indicating if variable " KopplaProgrammed" must be created for this device type312 -- 6) a boolean indicating if variable "RFYMode" must be created for this device type 311 313 -- 7) a boolean indicating if variables "AdjustMultiplier" and "AdjustConstant" must be created for this device type 312 314 local tableDeviceTypes = { … … 314 316 MOTION = { "urn:schemas-micasaverde-com:device:MotionSensor:1", "D_MotionSensor1.xml", "RFX Motion ", "MS/", false, false, false, "MOTION_SENSOR" }, 315 317 SMOKE = { "urn:schemas-micasaverde-com:device:SmokeSensor:1", "D_SmokeSensor1.xml", "RFX Smoke ", "SS/", false, false, false, nil }, 316 LIGHT = { "urn:schemas-upnp-org:device:BinaryLight:1", "D_BinaryLight1.xml", "RFX Light ", "LS/", true, true, false, "SWITCH_LIGHT" },317 DIMMER = { "urn:schemas-upnp-org:device:DimmableLight:1", "D_DimmableLight1.xml", "RFX dim Light ", "DL/", true, true, false, "DIMMABLE_LIGHT" },318 COVER = { "urn:schemas-micasaverde-com:device:WindowCovering:1", "D_WindowCovering1.xml", "RFX Window ", "WC/", true, false, false, "WINDOW_COVERING" },318 LIGHT = { "urn:schemas-upnp-org:device:BinaryLight:1", "D_BinaryLight1.xml", "RFX Light ", "LS/", true, false, false, "SWITCH_LIGHT" }, 319 DIMMER = { "urn:schemas-upnp-org:device:DimmableLight:1", "D_DimmableLight1.xml", "RFX dim Light ", "DL/", true, false, false, "DIMMABLE_LIGHT" }, 320 COVER = { "urn:schemas-micasaverde-com:device:WindowCovering:1", "D_WindowCovering1.xml", "RFX Window ", "WC/", true, true, false, "WINDOW_COVERING" }, 319 321 TEMP = { "urn:schemas-micasaverde-com:device:TemperatureSensor:1", "D_TemperatureSensor1.xml", "RFX Temp ", "TS/", false, false, true, nil }, 320 322 HUM = { "urn:schemas-micasaverde-com:device:HumiditySensor:1", "D_HumiditySensor1.xml", "RFX Hum ", "HS/", false, false, true, nil }, … … 1193 1195 local associations = getVariable(k, tabVars.VAR_ASSOCIATION) 1194 1196 table.insert(tableDevices, { v.id, key, associations, v.description }) 1197 if (tableDeviceTypes[key][6] == true) 1198 then 1199 setDefaultValue(k, tabVars.VAR_RFY_MODE, "STANDARD") 1200 end 1195 1201 if (tableDeviceTypes[key][7] == true) 1196 1202 then … … 1363 1369 end 1364 1370 parameters = parameters .. tabVars.VAR_ASSOCIATION[1] .. "," .. tabVars.VAR_ASSOCIATION[2] .. "=" 1371 end 1372 if (deviceType[6] == true) 1373 then 1374 if (parameters ~= "") 1375 then 1376 parameters = parameters .. "\n" 1377 end 1378 parameters = parameters .. tabVars.VAR_RFY_MODE[1] .. "," .. tabVars.VAR_RFY_MODE[2] .. "=STANDARD" 1365 1379 end 1366 1380 if (deviceType[7] == true) … … 2013 2027 error("Response to an unexpected mode command: " .. cmd) 2014 2028 end 2029 elseif (subType == tableMsgTypes.UNKNOWN_RTS_REMOTE[2]) 2030 then 2031 warning("Unknown RTS remote") 2032 tableCmds = { { "", "", nil, 0 } } 2015 2033 elseif (subType == tableMsgTypes.WRONG_COMMAND[2]) 2016 2034 then … … 3373 3391 3374 3392 tableMsgTypes.RESPONSE_MODE_COMMAND[4] = decodeResponseMode 3393 tableMsgTypes.UNKNOWN_RTS_REMOTE[4] = decodeResponseMode 3375 3394 tableMsgTypes.WRONG_COMMAND[4] = decodeResponseMode 3376 3395 tableMsgTypes.RECEIVER_LOCK_ERROR[4] = decodeResponse … … 4222 4241 elseif (category == 7) 4223 4242 then 4243 local mode = getVariable(device, tabVars.VAR_RFY_MODE) or "" 4224 4244 type = tableMsgTypes.RFY0[1] 4225 4245 subType = tonumber(string.sub(id, 7, 7)) 4226 4246 if (cmd == tableCommands.CMD_OPEN[1]) 4227 4247 then 4228 cmdCode = 1 4248 if (mode == "VENETIAN_US") 4249 then 4250 cmdCode = 0x0F 4251 elseif (mode == "VENETIAN_EU") 4252 then 4253 cmdCode = 0x11 4254 else 4255 cmdCode = 0x01 4256 end 4229 4257 elseif (cmd == tableCommands.CMD_CLOSE[1]) 4230 4258 then 4231 cmdCode = 3 4259 if (mode == "VENETIAN_US") 4260 then 4261 cmdCode = 0x10 4262 elseif (mode == "VENETIAN_EU") 4263 then 4264 cmdCode = 0x12 4265 else 4266 cmdCode = 0x03 4267 end 4232 4268 elseif (cmd == tableCommands.CMD_STOP[1]) 4233 4269 then … … 5315 5351 { "RFY0/", "PROGRAM", tableMsgTypes.RFY0[1], tableMsgTypes.RFY0[2], 0x07 }, 5316 5352 { "RFY0/", "LOWER_LIMIT", tableMsgTypes.RFY0[1], tableMsgTypes.RFY0[2], 0x04 }, 5317 { "RFY0/", "UPPER_LIMIT", tableMsgTypes.RFY0[1], tableMsgTypes.RFY0[2], 0x02 } 5353 { "RFY0/", "UPPER_LIMIT", tableMsgTypes.RFY0[1], tableMsgTypes.RFY0[2], 0x02 }, 5354 { "RFY0/", "VENETIAN_US_ANGLE_PLUS", tableMsgTypes.RFY0[1], tableMsgTypes.RFY0[2], 0x11 }, 5355 { "RFY0/", "VENETIAN_US_ANGLE_MINUS", tableMsgTypes.RFY0[1], tableMsgTypes.RFY0[2], 0x12 }, 5356 { "RFY0/", "VENETIAN_EU_ANGLE_PLUS", tableMsgTypes.RFY0[1], tableMsgTypes.RFY0[2], 0x0F }, 5357 { "RFY0/", "VENETIAN_EU_ANGLE_MINUS", tableMsgTypes.RFY0[1], tableMsgTypes.RFY0[2], 0x10 }, 5358 { "RFY0/", "ENABLE_DETECTOR", tableMsgTypes.RFY0[1], tableMsgTypes.RFY0[2], 0x13 }, 5359 { "RFY0/", "DISABLE_DETECTOR", tableMsgTypes.RFY0[1], tableMsgTypes.RFY0[2], 0x14 } 5318 5360 } 5319 5361 … … 5392 5434 tonumber(string.sub(remoteId, 5, 6), 16), 5393 5435 id4 * 16 + unitcode, tableCommands[idxCmd][5], 0) 5394 elseif (idxCmd >= 11 and idxCmd <= 1 3)5436 elseif (idxCmd >= 11 and idxCmd <= 19) 5395 5437 then 5396 5438 remoteId = string.sub(id, 9, 13) -
TabularUnified trunk/S_RFXtrx.xml ¶
r135 r152 259 259 <allowedValue>LOWER_LIMIT</allowedValue> 260 260 <allowedValue>UPPER_LIMIT</allowedValue> 261 <allowedValue>VENETIAN_US_ANGLE_PLUS</allowedValue> 262 <allowedValue>VENETIAN_US_ANGLE_MINUS</allowedValue> 263 <allowedValue>VENETIAN_EU_ANGLE_PLUS</allowedValue> 264 <allowedValue>VENETIAN_EU_ANGLE_MINUS</allowedValue> 265 <allowedValue>ENABLE_DETECTOR</allowedValue> 266 <allowedValue>DISABLE_DETECTOR</allowedValue> 261 267 </allowedValueList> 262 268 </stateVariable>
Note: See TracChangeset
for help on using the changeset viewer.