Changeset 47


Ignore:
Timestamp:
2014-04-16 18:18:01 (11 years ago)
Author:
andrei
Message:
  • add lastTripped variable for all occupancy sensors;
  • add enoceanUIswitch variable in order to update plugin generated switches;
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/I_EnOceanGateway1.xml

    r41 r47  
    1717            TeachIn = enoceanPlugin.TeachIn 
    1818            CheckTime = enoceanPlugin.CheckTime 
     19            updateSwitch = enoceanPlugin.updateSwitch 
    1920            return enoceanPlugin.Init( lul_device ) 
    2021        end 
  • TabularUnified trunk/L_EnOceanGateway1.lua

    r46 r47  
    275275} 
    276276local resetTime = -1 --900 -- 15 minutes -- for testing : 20  
     277local g_switces = {} 
    277278------------------------------------------------------------------------------------------------------------------------ 
    278279-- Generic utilities 
     
    310311end 
    311312 
     313function updateSwitch(device,service,var,old,new) 
     314    local id 
     315    for key,val in pairs(g_switces) do 
     316        if g_switces[key].switchID == tonumber(device) then 
     317            id = g_switces[key].enoceanUIswitch  
     318        end 
     319    end 
     320    --luup.call_action(SID.SW_POWER,"SetTarget",{newTargetValue = tostring(new)},id) 
     321    luup.variable_set( SID.SW_POWER, "Target", new, id ) 
     322    luup.variable_set( SID.SW_POWER, "Status", new, id ) 
     323    debug( "(EnOceanPlugin::updateSwitch) : Switch " .. tostring(id) .. " has been set to " .. tostring(new)) 
     324end 
    312325 
    313326local function PadLeft (s, length, c) 
     
    328341 
    329342-- Check if a table contains the given item. 
    330 -- Returns true and the key/index of the item if found, 
     343-- Returns true and the key / index of the item if found, 
    331344-- or false if not found. 
    332345local function TableContains (t, item) 
     
    415428 
    416429function CheckTime(child) 
    417     local last = luup.variable_get(SID.ENOCEAN, "LastTriped", g_parentDevice) or "0" 
     430    child = tonumber(child, 10) 
     431    local last = luup.variable_get(SID.SECURITY, "LastTriped", child) or "0" 
    418432    local nowt = os.time() 
    419433    last = tonumber(last, 10) 
    420     child = tonumber(child, 10) 
    421     --log(  "(EnOceanPlugin::1BS) Child id : ".. child .. " and TIME = " .. nowt) 
     434    --debug(  "(EnOceanPlugin::1BS) Child id : ".. child .. " and TIME = " .. nowt) 
    422435    if (nowt - last) > resetTime then 
    423         luup.variable_set( SID.SECURITY, "Tripped", "0", child ) 
     436        local lastState = luup.variable_get( SID.SECURITY, "Tripped", child ) or "0" 
     437        if lastState == "0" then 
     438            -- do nothing 
     439        else 
     440            luup.variable_set( SID.SECURITY, "Tripped", "0", child )     
     441        end 
    424442        --luup.variable_set(SID.ENOCEAN, "LastTriped", nowt, g_parentDevice) fixing un tripped issue 
    425443    end  
     
    845863                luup.variable_set( SID.SECURITY, "Tripped", tonumber(tripped), g_childDevices[altid] ) 
    846864                local timeNow = os.time() 
    847                 luup.variable_set( SID.ENOCEAN, "LastTriped", timeNow, g_parentDevice ) 
     865                luup.variable_set( SID.SECURITY, "LastTriped", timeNow, g_childDevices[altid] ) 
    848866            end 
    849867        -------------------------------------------------------------------------------------------- 
     
    16551673end 
    16561674 
    1657  
     1675local function setWatch() 
     1676    local enoceanUIswitch 
     1677    local count = 1 
     1678    for key,val in pairs(luup.devices) do 
     1679        if val.category_num == 3 then 
     1680            if val.device_num_parent ~= g_parentDevice then 
     1681                enoceanUIswitch = luup.variable_get( SID.SW_POWER, "enoceanUIswitch", key ) or "" 
     1682                if enoceanUIswitch == "" then   
     1683                        luup.variable_set( SID.SW_POWER, "enoceanUIswitch", "0", key ) 
     1684                        debug( "(EnOceanPlugin::setWatch) Setting enoceanUIswitch to 0 for device " .. key )         
     1685                else 
     1686                    if enoceanUIswitch == "0" then 
     1687                        debug( "(EnOceanPlugin::setWatch)  'enoceanUIswitch' is 0 for device " .. key .. ", nothing to do!" ) 
     1688                    else 
     1689                        g_switces[count] = {} 
     1690                        g_switces[count].switchID = key 
     1691                        g_switces[count].enoceanUIswitch = tonumber(enoceanUIswitch) 
     1692                        count = count + 1 
     1693                        luup.variable_watch("updateSwitch",SID.SW_POWER,"Status",key) 
     1694                        debug("(EnOceanPlugin::setWatch) : luup_watch has been set for device = " .. key) 
     1695                    end 
     1696                end 
     1697            end 
     1698        end 
     1699    end 
     1700end 
    16581701------------------------------------------------------------------------------------------------------------------------ 
    16591702-- Init 
     
    16791722    if F_DEBUG_MODE then 
    16801723        debug = log 
     1724    end 
     1725     
     1726    if debugMode then  
     1727        log( "(EnOceanPlugin::Init) : DebugMode is enabled" ) 
     1728    else 
     1729        log( "(EnOceanPlugin::Init) : DebugMode is disabled" ) 
    16811730    end 
    16821731     
     
    17051754        if v.device_num_parent == g_parentDevice and v.category_num == 4 and v.subcategory_num == 3 then 
    17061755            local timeNow = os.time() 
    1707             luup.variable_set( SID.ENOCEAN, "LastTriped", timeNow, k ) 
     1756            luup.variable_set( SID.SECURITY, "LastTriped", timeNow, k ) 
    17081757            CheckTime(k) 
    17091758        end 
     
    17191768        end 
    17201769    end 
    1721  
    1722     debug( "(EnOceanPlugin::Init) Success: startup successful" ) 
     1770    setWatch() 
     1771    log( "(EnOceanPlugin::Init) Success: startup successful" ) 
    17231772    return true, "startup successful", "EnOcean plugin" 
    17241773end 
Note: See TracChangeset for help on using the changeset viewer.