Changeset 11
- Timestamp:
- 2012-05-23 20:00:58 (13 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/D_ConcordPartition.json ¶
r7 r11 335 335 "ControlType": "label", 336 336 "Label": { 337 "lang_tag": " bypass_sensors",338 "text": "<b> Bypass Sensors</b>"337 "lang_tag": "toggle_chime_mode", 338 "text": "<b>Toggle Chime Mode</b>" 339 339 }, 340 340 "Display": { … … 346 346 }, 347 347 { 348 "ControlType": "input", 349 "ID": "zones", 350 "Display": { 348 "ControlType": "button", 349 "Label": { 350 "lang_tag": "chime_mode", 351 "text": "Chime Mode" 352 }, 353 "Display": { 354 "Service": "urn:micasaverde-com:serviceId:AlarmPartition2", 355 "Variable": "ChimeEnabled", 356 "Value": "1", 351 357 "Top": 190, 352 358 "Left": 150, 353 359 "Width": 100, 354 360 "Height": 20 355 }356 },357 {358 "ControlType": "button",359 "Label": {360 "lang_tag": "bypass",361 "text": "Bypass"362 },363 "Display": {364 "Top": 190,365 "Left": 260,366 "Width": 70,367 "Height": 20368 361 }, 369 362 "Command": { 370 363 "Service": "urn:micasaverde-com:serviceId:ConcordAlarmPanel1", 371 "Action": "BypassZones", 372 "Parameters": [ 373 { 374 "Name": "Zones", 375 "ID": "zones" 376 }, 377 { 378 "Name": "PINCode", 379 "ID": "PINCode" 380 } 381 ] 364 "Action": "ToggleChimeMode", 365 "Parameters": [] 382 366 } 383 367 }, … … 385 369 "ControlType": "label", 386 370 "Label": { 387 "lang_tag": " toggle_chime_mode",388 "text": "<b> Toggle Chime Mode</b>"371 "lang_tag": "panic_alarms", 372 "text": "<b>Panic Alarms</b>" 389 373 }, 390 374 "Display": { … … 398 382 "ControlType": "button", 399 383 "Label": { 400 "lang_tag": "chime_mode", 401 "text": "Chime Mode" 402 }, 403 "Display": { 404 "Service": "urn:micasaverde-com:serviceId:AlarmPartition2", 405 "Variable": "ChimeEnabled", 406 "Value": "1", 384 "lang_tag": "police", 385 "text": "Police" 386 }, 387 "Display": { 407 388 "Top": 250, 408 389 "Left": 150, 409 "Width": 100,410 "Height": 20411 },412 "Command": {413 "Service": "urn:micasaverde-com:serviceId:ConcordAlarmPanel1",414 "Action": "ToggleChimeMode",415 "Parameters": []416 }417 },418 {419 "ControlType": "label",420 "Label": {421 "lang_tag": "panic_alarms",422 "text": "<b>Panic Alarms</b>"423 },424 "Display": {425 "Top": 290,426 "Left": 155,427 "Width": 100,428 "Height": 20429 }430 },431 {432 "ControlType": "button",433 "Label": {434 "lang_tag": "police",435 "text": "Police"436 },437 "Display": {438 "Top": 310,439 "Left": 150,440 390 "Width": 75, 441 391 "Height": 20 … … 459 409 }, 460 410 "Display": { 461 "Top": 310,411 "Top": 250, 462 412 "Left": 230, 463 413 "Width": 75, … … 482 432 }, 483 433 "Display": { 484 "Top": 310,434 "Top": 250, 485 435 "Left": 310, 486 436 "Width": 75, -
TabularUnified trunk/I_Concord.xml ¶
r9 r11 56 56 </action> 57 57 <action> 58 <serviceId>urn:micasaverde-com:serviceId:ConcordAlarmPanel1</serviceId> 59 <name>BypassZone</name> 60 <run> 61 concordPlugin.bypassZone(lul_device, lul_settings.bypass, lul_settings.pinCode) 62 </run> 63 </action> 64 <action> 58 65 <serviceId>urn:micasaverde-com:serviceId:SecuritySensor1</serviceId> 59 66 <name>SetArmed</name> 60 67 <run> 61 concordPlugin.setArmed(lul_ device, lul_settings.newArmedValue)68 concordPlugin.setArmed(lul_settings.newArmedValue) 62 69 </run> 63 70 </action> -
TabularUnified trunk/J_Concord.js ¶
r10 r11 8 8 9 9 10 //***************************************************************************** 11 // isEmpty: Returns true if an object has no properties. 12 //***************************************************************************** 13 function isEmpty(obj) 10 function bypassZone (device, action) 14 11 { 15 for (var key in obj) 16 { 17 if (map.hasOwnProperty(key)) 18 return false; 19 } 20 return true; 21 } 12 new Ajax.Request( data_request_url, { 13 method: "get", 14 parameters: { 15 id: "action", 16 DeviceNum: device, 17 serviceId: concord.PANEL_SID, 18 action: "BypassZone", 19 bypass: (action === "Bypass") && "1" || "0", 20 pinCode: document.getElementById("pin_code").value 21 } 22 }); 22 23 23 24 function updateZoneLabels() 25 { 26 var zone = ""; 27 var labelsRaw = ""; 28 29 for (zone in concord.labels) 30 { 31 labelsRaw += ";" + zone + "-" + concord.addresses[zone] + "-" + concord.channels[zone] + "-" + concord.labels[zone]; 32 } 33 labelsRaw = labelsRaw.substring(1); // Remove the first semicolon(;). 34 35 set_device_state(concord.device, concord.PANEL_SID, "Zones", labelsRaw, 0); 36 37 showCheatSheet(concord.device); 38 } 39 40 41 function addLabel() 42 { 43 var zone = ""; 44 var label = ""; 45 46 zone = document.getElementById("vista_zone_no").value; 47 label = document.getElementById("vista_zone_label").value; 48 address = document.getElementById("vista_zone_address").value; 49 channel = document.getElementById("vista_zone_channel").value; 50 51 if (zone.match(/^(\d+)$/) === null || label === "") 52 { 53 return; 54 } 55 56 concord.labels[zone] = label; 57 concord.addresses[zone] = address; 58 concord.channels[zone] = channel; 59 60 updateZoneLabels(); 61 } 62 63 64 function removeLabel(zone) 65 { 66 delete concord.labels[zone]; 67 delete concord.addresses[zone]; 68 delete concord.channels[zone]; 69 updateZoneLabels(); 70 } 71 72 73 function pad (number, length) 74 { 75 var str = "" + number; 76 while (str.length < length) 77 { 78 str = "0" + str; 79 } 80 81 return str; 82 } 83 84 85 function bypassZone (device) 86 { 24 setTimeout( function() { showZones(); }, 6000) 87 25 } 88 26 … … 98 36 var i; 99 37 100 concord.device = lul_device;101 102 38 html += '<table style="width:98%; border-collapse:collapse; border:1px solid #8BB0D6; margin-left:1%">'; 103 39 html += '<tr>'; … … 107 43 html += '<th style="text-align:center; border:1px solid #8BB0D6">Trouble</th>'; 108 44 html += '<th style="text-align:center; border:1px solid #8BB0D6">Armed</th>'; 109 html += '<th style=" border:1px solid #8BB0D6"></th>';45 html += '<th style="text-align:center; border:1px solid #8BB0D6">Pin: <input id="pin_code" type="text" maxlength="4" size="4" /></th>'; 110 46 html += '</tr>'; 111 47 … … 116 52 { 117 53 var zoneNum = zone.altid.substr(13); 118 var faulted = (get_device_state( zone.id, concord.PANEL_SID, "Faulted" ) === "1") && "✔" || "✘";119 var trouble = (get_device_state( zone.id, concord.PANEL_SID, "Trouble" ) === "1") && "✔" || "✘";120 var armed = (get_device_state( zone.id, SES_SID, "Armed" ) === "1") && "✔" || "✘";121 var disabled = (armed === "✔") && "" || "disabled";54 var faulted = (get_device_state( zone.id, concord.PANEL_SID, "Faulted", 1) === "1") && "✔" || "✘"; 55 var trouble = (get_device_state( zone.id, concord.PANEL_SID, "Trouble", 1) === "1") && "✔" || "✘"; 56 var armed = (get_device_state( zone.id, SES_SID, "Armed", 1) === "1") && "✔" || "✘"; 57 var action = (armed === "✔") && "Bypass" || "Arm"; 122 58 123 59 // Show all zones ordered by zone # in ascending order. … … 128 64 html += '<td style="border:1px solid #8BB0D6; text-align:center">' + trouble + '</td>'; 129 65 html += '<td style="border:1px solid #8BB0D6; text-align:center">' + armed + '</td>'; 130 html += '<td style="border:1px solid #8BB0D6; text-align:center"><button name="bypass_' + zoneNum + '" type="button" onclick="bypassZone(' + zone.id + ')" ' + disabled + ' >Bypass</button></td>';66 html += '<td style="border:1px solid #8BB0D6; text-align:center"><button type="button" onclick="bypassZone(' + zone.id + ', \'' + action + '\')" >' + action + '</button></td>'; 131 67 html += '</tr>'; 132 68 } … … 135 71 html += '</table>'; 136 72 73 //html += '<br />'; 74 75 //html += '<p id="status"></p>'; 76 137 77 set_panel_html(html); 138 78 } -
TabularUnified trunk/L_Concord.lua ¶
r10 r11 342 342 ["Chime"] = "0701", 343 343 -- Bypass / arm zone 344 ["Bypass"] = " #"344 ["Bypass"] = "0B" 345 345 } 346 346 … … 495 495 sendAttempt = sendAttempt + 1 496 496 if (sendAttempt == 3) then 497 -- Send CR/LF to reset the automation module's message queue. 497 498 if (not luup.io.write(CHAR.CR .. s)) then 498 499 task("Failed to send message", TASK.ERROR_PERM) 499 500 return 500 501 end 502 -- Remove the message from the queue, because there's a chance that the message is wrong. 501 503 sendAttempt = 0 504 table.remove(messageQueue, 1) 502 505 elseif (not luup.io.write(s)) then 506 -- Send the message normally. 503 507 task("Failed to send message", TASK.ERROR_PERM) 504 508 return … … 531 535 532 536 533 local function expandPinCode (pinCode) 534 if (pinCode == nil) then 537 -- Expands a number, e.g. 21 -> 0201 538 local function expand (nr) 539 if (nr == nil) then 535 540 return "" 536 541 end 537 542 538 local exp PinCode= ""539 for i = 1, # pinCodedo540 local d = pinCode:sub(i, i)541 exp PinCode = expPinCode.. padLeft(d)542 end 543 544 return exp PinCode543 local expNr = "" 544 for i = 1, #nr do 545 local d = nr:sub(i, i) 546 expNr = expNr .. padLeft(d) 547 end 548 549 return expNr 545 550 end 546 551 … … 904 909 local action = (state == "Disarmed") and "disarm" or "arm" 905 910 911 if (pinCode == "undefined") then 912 pinCode = nil 913 end 914 906 915 if (QUICK_ARM == false or action == "disarm") then 907 916 -- Check if the PIN code exists and if it's valid. 908 917 if (pinCode == nil or pinCode:find("^%d%d%d%d$") == nil) then 909 task("Invalid usercode. Cannot ".. action .." partition.", TASK.ERROR)918 task("Invalid access code. Cannot ".. action .." partition.", TASK.ERROR) 910 919 return 911 920 end … … 924 933 -- 40h [PN] [AN] [KP1] 925 934 [KPn] 926 local command = "40" .. padLeft(partNum) .. "00" .. prefix .. COMMANDS[state] .. suffix .. expand PinCode(pinCode)935 local command = "40" .. padLeft(partNum) .. "00" .. prefix .. COMMANDS[state] .. suffix .. expand(pinCode) 927 936 addToQueue(command) 928 937 … … 967 976 function setArmed (device, newArmedValue, pinCode) 968 977 local action = (newArmedValue == "1") and "arm" or "bypass" 969 970 if (QUICK_ARM == false) then 971 -- Check if the PIN code exists and if it's valid. 972 if (pinCode == nil or pinCode:find("^%d%d%d%d$") == nil) then 973 task("Invalid user code. Cannot ".. action .." zone.", TASK.ERROR) 974 return 975 end 978 task( "Please ".. action .." the zone from the Zones tab of the panel device.", TASK.ERROR) 979 end 980 981 982 function bypassZone (device, bypass, pinCode) 983 984 local action = (bypass == "1") and "bypass" or "arm" 985 986 if (pinCode == "undefined") then 987 pinCode = nil 988 end 989 990 -- Check if the PIN code exists and if it's valid. 991 if (pinCode == nil or pinCode:find("^%d%d%d%d$") == nil) then 992 task("Invalid access code. Cannot ".. action .." zone.", TASK.ERROR) 993 return 976 994 end 977 995 … … 981 999 return 982 1000 end 983 debug("(ConcordPlugin::setArmed) ".. action .." zone #".. zoneNum ..".") 984 985 local command = "40".. padLeft( g_zones[zoneNum].partNum ) .."00".. COMMANDS["Bypass"] .. expandPinCode(pinCode) .. padLeft(zoneNum) 1001 debug("(ConcordPlugin::bypassZone) ".. action .." zone #".. zoneNum ..".") 1002 1003 --local command = "40".. padLeft( g_zones[zoneNum].partNum ) .."00".. COMMANDS["Bypass"] .. expand(pinCode) .. expand( padLeft(zoneNum) ) 1004 local command = "40".. padLeft( g_zones[zoneNum].partNum ) .."00".. COMMANDS["Bypass"] 986 1005 addToQueue(command) 1006 command = "40".. padLeft( g_zones[zoneNum].partNum ) .."00".. expand(pinCode) 1007 addToQueue(command) 1008 command = "40".. padLeft( g_zones[zoneNum].partNum ) .."00".. expand( padLeft(zoneNum) ) 1009 addToQueue(command) 1010 987 1011 task( "Command to ".. action .." zone #".. zoneNum .." sent.", TASK.BUSY) 988 1012 end … … 995 1019 log("(ConcordPlugin::init) Concord alarm panel plugin version " .. VERSION .. ".") 996 1020 1021 lug_device = lul_device 1022 997 1023 -- Call the task function to get a handle. 998 1024 g_taskHandle = luup.task( "Starting up...", TASK.BUSY, "Concord Plugin", g_taskHandle) 999 1000 lug_device = lul_device1001 1025 1002 1026 -- Check if Debug Mode is enabled. -
TabularUnified trunk/S_Concord.xml ¶
r8 r11 16 16 <stateVariable> 17 17 <name>ExtraFeatures</name> 18 <datatype>string</datatype> 19 </stateVariable> 20 <stateVariable> 21 <name>A_ARG_TYPE_boolean</name> 18 22 <datatype>boolean</datatype> 19 23 </stateVariable> 24 <stateVariable> 25 <name>A_ARG_TYPE_string</name> 26 <datatype>string</datatype> 27 </stateVariable> 28 A_ARG_TYPE_ 20 29 </serviceStateTable> 21 30 <actionList> … … 28 37 <argumentList></argumentList> 29 38 </action> 39 <action> 40 <name>BypassZone</name> 41 <argumentList> 42 <argument> 43 <name>bypass</name> 44 <direction>in</direction> 45 <relatedStateVariable>A_ARG_TYPE_boolean</relatedStateVariable> 46 </argument> 47 <argument> 48 <name>pinCode</name> 49 <direction>in</direction> 50 <relatedStateVariable>A_ARG_TYPE_string</relatedStateVariable> 51 </argument> 52 </argumentList> 53 </action> 30 54 </actionList> 31 55 </scpd>
Note: See TracChangeset
for help on using the changeset viewer.