Changeset 47
- Timestamp:
- 2014-04-16 18:18:01 (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/I_EnOceanGateway1.xml ¶
r41 r47 17 17 TeachIn = enoceanPlugin.TeachIn 18 18 CheckTime = enoceanPlugin.CheckTime 19 updateSwitch = enoceanPlugin.updateSwitch 19 20 return enoceanPlugin.Init( lul_device ) 20 21 end -
TabularUnified trunk/L_EnOceanGateway1.lua ¶
r46 r47 275 275 } 276 276 local resetTime = -1 --900 -- 15 minutes -- for testing : 20 277 local g_switces = {} 277 278 ------------------------------------------------------------------------------------------------------------------------ 278 279 -- Generic utilities … … 310 311 end 311 312 313 function 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)) 324 end 312 325 313 326 local function PadLeft (s, length, c) … … 328 341 329 342 -- 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, 331 344 -- or false if not found. 332 345 local function TableContains (t, item) … … 415 428 416 429 function 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" 418 432 local nowt = os.time() 419 433 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) 422 435 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 424 442 --luup.variable_set(SID.ENOCEAN, "LastTriped", nowt, g_parentDevice) fixing un tripped issue 425 443 end … … 845 863 luup.variable_set( SID.SECURITY, "Tripped", tonumber(tripped), g_childDevices[altid] ) 846 864 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] ) 848 866 end 849 867 -------------------------------------------------------------------------------------------- … … 1655 1673 end 1656 1674 1657 1675 local 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 1700 end 1658 1701 ------------------------------------------------------------------------------------------------------------------------ 1659 1702 -- Init … … 1679 1722 if F_DEBUG_MODE then 1680 1723 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" ) 1681 1730 end 1682 1731 … … 1705 1754 if v.device_num_parent == g_parentDevice and v.category_num == 4 and v.subcategory_num == 3 then 1706 1755 local timeNow = os.time() 1707 luup.variable_set( SID. ENOCEAN, "LastTriped", timeNow, k )1756 luup.variable_set( SID.SECURITY, "LastTriped", timeNow, k ) 1708 1757 CheckTime(k) 1709 1758 end … … 1719 1768 end 1720 1769 end 1721 1722 debug( "(EnOceanPlugin::Init) Success: startup successful" )1770 setWatch() 1771 log( "(EnOceanPlugin::Init) Success: startup successful" ) 1723 1772 return true, "startup successful", "EnOcean plugin" 1724 1773 end
Note: See TracChangeset
for help on using the changeset viewer.