Changeset 11


Ignore:
Timestamp:
2012-05-23 20:00:58 (13 years ago)
Author:
mcvflorin
Message:
  • Implemented bypass zones.
  • Minor fixes and improvements.
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/D_ConcordPartition.json

    r7 r11  
    335335                    "ControlType": "label", 
    336336                    "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>" 
    339339                    }, 
    340340                    "Display": { 
     
    346346                }, 
    347347                { 
    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", 
    351357                        "Top": 190, 
    352358                        "Left": 150, 
    353359                        "Width": 100, 
    354360                        "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": 20 
    368361                    }, 
    369362                    "Command": { 
    370363                        "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": [] 
    382366                    } 
    383367                }, 
     
    385369                    "ControlType": "label", 
    386370                    "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>" 
    389373                    }, 
    390374                    "Display": { 
     
    398382                    "ControlType": "button", 
    399383                    "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": { 
    407388                        "Top": 250, 
    408389                        "Left": 150, 
    409                         "Width": 100, 
    410                         "Height": 20 
    411                     }, 
    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": 20 
    429                     } 
    430                 }, 
    431                 { 
    432                     "ControlType": "button", 
    433                     "Label": { 
    434                         "lang_tag": "police", 
    435                         "text": "Police" 
    436                     }, 
    437                     "Display": { 
    438                         "Top": 310, 
    439                         "Left": 150, 
    440390                        "Width": 75, 
    441391                        "Height": 20 
     
    459409                    }, 
    460410                    "Display": { 
    461                         "Top": 310, 
     411                        "Top": 250, 
    462412                        "Left": 230, 
    463413                        "Width": 75, 
     
    482432                    }, 
    483433                    "Display": { 
    484                         "Top": 310, 
     434                        "Top": 250, 
    485435                        "Left": 310, 
    486436                        "Width": 75, 
  • TabularUnified trunk/I_Concord.xml

    r9 r11  
    5656        </action> 
    5757        <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> 
    5865            <serviceId>urn:micasaverde-com:serviceId:SecuritySensor1</serviceId> 
    5966            <name>SetArmed</name> 
    6067            <run> 
    61                 concordPlugin.setArmed(lul_device, lul_settings.newArmedValue) 
     68                concordPlugin.setArmed(lul_settings.newArmedValue) 
    6269            </run> 
    6370        </action> 
  • TabularUnified trunk/J_Concord.js

    r10 r11  
    88 
    99 
    10 //***************************************************************************** 
    11 // isEmpty: Returns true if an object has no properties. 
    12 //***************************************************************************** 
    13 function isEmpty(obj) 
     10function bypassZone (device, action) 
    1411{ 
    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    }); 
    2223 
    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) 
    8725} 
    8826 
     
    9836    var i; 
    9937 
    100     concord.device = lul_device; 
    101  
    10238    html += '<table style="width:98%; border-collapse:collapse; border:1px solid #8BB0D6; margin-left:1%">'; 
    10339    html += '<tr>'; 
     
    10743    html += '<th style="text-align:center; border:1px solid #8BB0D6">Trouble</th>'; 
    10844    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>'; 
    11046    html += '</tr>'; 
    11147 
     
    11652        { 
    11753            var zoneNum  = zone.altid.substr(13); 
    118             var faulted  = (get_device_state( zone.id, concord.PANEL_SID, "Faulted")  === "1") && "&#10004;" || "&#10008;"; 
    119             var trouble  = (get_device_state( zone.id, concord.PANEL_SID, "Trouble")  === "1") && "&#10004;" || "&#10008;"; 
    120             var armed    = (get_device_state( zone.id, SES_SID, "Armed") === "1") && "&#10004;" || "&#10008;"; 
    121             var disabled = (armed === "&#10004;") && "" || "disabled"; 
     54            var faulted  = (get_device_state( zone.id, concord.PANEL_SID, "Faulted", 1)  === "1") && "&#10004;" || "&#10008;"; 
     55            var trouble  = (get_device_state( zone.id, concord.PANEL_SID, "Trouble", 1)  === "1") && "&#10004;" || "&#10008;"; 
     56            var armed    = (get_device_state( zone.id, SES_SID, "Armed", 1) === "1") && "&#10004;" || "&#10008;"; 
     57            var action = (armed === "&#10004;") && "Bypass" || "Arm"; 
    12258 
    12359            // Show all zones ordered by zone # in ascending order. 
     
    12864            html += '<td style="border:1px solid #8BB0D6; text-align:center">' + trouble + '</td>'; 
    12965            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>'; 
    13167            html += '</tr>'; 
    13268        } 
     
    13571    html += '</table>'; 
    13672 
     73    //html += '<br />'; 
     74 
     75    //html += '<p id="status"></p>'; 
     76 
    13777    set_panel_html(html); 
    13878} 
  • TabularUnified trunk/L_Concord.lua

    r10 r11  
    342342    ["Chime"] = "0701", 
    343343    -- Bypass / arm zone 
    344     ["Bypass"] = "#" 
     344    ["Bypass"] = "0B" 
    345345} 
    346346 
     
    495495    sendAttempt = sendAttempt + 1 
    496496    if (sendAttempt == 3) then 
     497        -- Send CR/LF to reset the automation module's message queue. 
    497498        if (not luup.io.write(CHAR.CR .. s)) then 
    498499            task("Failed to send message", TASK.ERROR_PERM) 
    499500            return 
    500501        end 
     502        -- Remove the message from the queue, because there's a chance that the message is wrong. 
    501503        sendAttempt = 0 
     504        table.remove(messageQueue, 1) 
    502505    elseif (not luup.io.write(s)) then 
     506        -- Send the message normally. 
    503507        task("Failed to send message", TASK.ERROR_PERM) 
    504508        return 
     
    531535 
    532536 
    533 local function expandPinCode (pinCode) 
    534     if (pinCode == nil) then 
     537-- Expands a number, e.g. 21 -> 0201 
     538local function expand (nr) 
     539    if (nr == nil) then 
    535540        return "" 
    536541    end 
    537542 
    538     local expPinCode = "" 
    539     for i = 1, #pinCode do 
    540         local d = pinCode:sub(i, i) 
    541         expPinCode = expPinCode .. padLeft(d) 
    542     end 
    543  
    544     return expPinCode 
     543    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 
    545550end 
    546551 
     
    904909    local action = (state == "Disarmed") and "disarm" or "arm" 
    905910 
     911    if (pinCode == "undefined") then 
     912        pinCode = nil 
     913    end 
     914 
    906915    if (QUICK_ARM == false or action == "disarm") then 
    907916        -- Check if the PIN code exists and if it's valid. 
    908917        if (pinCode == nil or pinCode:find("^%d%d%d%d$") == nil) then 
    909             task("Invalid user code. Cannot ".. action .." partition.", TASK.ERROR) 
     918            task("Invalid access code. Cannot ".. action .." partition.", TASK.ERROR) 
    910919            return 
    911920        end 
     
    924933    -- 40h [PN] [AN] [KP1]  
    925934 [KPn] 
    926     local command = "40" .. padLeft(partNum) .. "00" .. prefix .. COMMANDS[state] .. suffix .. expandPinCode(pinCode) 
     935    local command = "40" .. padLeft(partNum) .. "00" .. prefix .. COMMANDS[state] .. suffix .. expand(pinCode) 
    927936    addToQueue(command) 
    928937 
     
    967976function setArmed (device, newArmedValue, pinCode) 
    968977    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) 
     979end 
     980 
     981 
     982function 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 
    976994    end 
    977995 
     
    981999        return 
    9821000    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"] 
    9861005    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 
    9871011    task( "Command to ".. action .." zone #".. zoneNum .." sent.", TASK.BUSY) 
    9881012end 
     
    9951019    log("(ConcordPlugin::init) Concord alarm panel plugin version " .. VERSION .. ".") 
    9961020 
     1021    lug_device = lul_device 
     1022 
    9971023    -- Call the task function to get a handle. 
    9981024    g_taskHandle = luup.task( "Starting up...", TASK.BUSY, "Concord Plugin", g_taskHandle) 
    999  
    1000     lug_device = lul_device 
    10011025 
    10021026    -- Check if Debug Mode is enabled. 
  • TabularUnified trunk/S_Concord.xml

    r8 r11  
    1616        <stateVariable> 
    1717            <name>ExtraFeatures</name> 
     18            <datatype>string</datatype> 
     19        </stateVariable> 
     20        <stateVariable> 
     21            <name>A_ARG_TYPE_boolean</name> 
    1822            <datatype>boolean</datatype> 
    1923        </stateVariable> 
     24        <stateVariable> 
     25            <name>A_ARG_TYPE_string</name> 
     26            <datatype>string</datatype> 
     27        </stateVariable> 
     28        A_ARG_TYPE_ 
    2029    </serviceStateTable> 
    2130    <actionList> 
     
    2837            <argumentList></argumentList> 
    2938        </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> 
    3054    </actionList> 
    3155</scpd> 
Note: See TracChangeset for help on using the changeset viewer.