Changeset 139


Ignore:
Timestamp:
2015-02-13 15:00:17 (10 years ago)
Author:
mcvflorin
Message:
  • Save the current pan/tilt angles before rebooting the camera, and restore them after reboot.
  • Added implementation for the 'Reboot' action.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified branches/UI7/I_ApexisUI7.xml

    r138 r139  
    549549            elseif msConfStage == MS_CONF_STAGES.CREATE_DEVICE then 
    550550 
    551                 gatewayAddress = FindAddress() 
     551                local gatewayAddress = FindAddress() 
    552552                luup.variable_set(CAM_SID, "GatewayAddress", gatewayAddress, lug_device) 
    553553                if gatewayAddress == "" then 
     
    675675-------------------------------------------------------------------------------- 
    676676 
    677         function RebootCamera() 
     677        function Reboot() 
    678678 
    679679            local IP = luup.attr_get("ip", lug_device) 
     
    682682            password = UrlEncode(password) 
    683683 
    684             local url = "" 
     684            local url, status, content 
     685 
     686            -- The camera's pan/tilt angles are resetting to the defaults when we reboot the camera, 
     687            -- so if the user sets other angles for the camera, but doesn't set them as defaults, 
     688            -- they will be lost after the reboot. Try to prevent this by saving the current pan/tilt angles, 
     689            -- and restoring them after the camera reboots. 
     690            if lug_model == MODEL_VISTACAM_PT then 
     691                -- Save current pan/tilt angles as preset 16. 
     692                url = "http://".. IP .."/decoder_control.cgi?user=".. username .."&pwd=".. password .."&command=60" 
     693                luup.log("ApexisUI7:Reboot- Save preset 16") 
     694                status, content = luup.inet.wget(url) 
     695                if not content or not content:lower():find("ok") then 
     696                    luup.log("ApexisUI7:Reboot- Failed to save preset 16", 1) 
     697                end 
     698 
     699                -- Set preset 16 as startup preset. 
     700                url = "http://".. IP .."/set_misc.cgi?user=".. username .."&pwd=".. password .."&ptz_preset_onstart=16" 
     701                luup.log("ApexisUI7:Reboot- Set preset 16 as startup preset") 
     702                status, content = luup.inet.wget(url) 
     703                if not content or not content:lower():find("ok") then 
     704                    luup.log("ApexisUI7:Reboot- Failed to set preset 16 as startup preset", 1) 
     705                end 
     706            end 
     707 
    685708            if not lug_cgiBin then 
    686709                url = "http://".. IP .."/reboot.cgi?user=".. username .."&pwd=".. password 
     
    689712            end 
    690713 
    691             local status, content = luup.inet.wget(url) 
     714            luup.log("ApexisUI7:Reboot- Reboot camera") 
     715            status, content = luup.inet.wget(url) 
    692716            if content and content:find("ok", 1, true) then 
    693                 luup.log("ApexisUI7:RebootCamera- Request sent OK") 
    694             else 
    695                 luup.log("ApexisUI7:RebootCamera- Failed to reboot camera", 1) 
     717                luup.log("ApexisUI7:Reboot- Request sent OK") 
     718            else 
     719                luup.log("ApexisUI7:Reboot- Failed to reboot camera", 1) 
    696720            end 
    697721        end 
     
    859883 
    860884            if rebootCamera then 
    861                 RebootCamera(model) 
     885                Reboot(model) 
    862886            end 
    863887        end 
     
    16041628            end 
    16051629 
    1606             luup.call_timer("RebootCamera", 2, "1:55:00", "1,2,3,4,5,6,7") 
     1630            luup.call_timer("Reboot", 2, "1:55:00", "1,2,3,4,5,6,7") 
    16071631            luup.log("ApexisUI7:Startup- Startup OK") 
    16081632        end 
     
    19171941 
    19181942        <action> 
     1943            <serviceId>urn:micasaverde-com:serviceId:Camera1</serviceId> 
     1944            <name>Reboot</name> 
     1945            <run> 
     1946                Reboot() 
     1947            </run> 
     1948        </action> 
     1949 
     1950        <action> 
    19191951            <serviceId>urn:micasaverde-com:serviceId:SecuritySensor1</serviceId> 
    19201952            <name>SetArmed</name> 
Note: See TracChangeset for help on using the changeset viewer.