Changeset 139
- Timestamp:
- 2015-02-13 15:00:17 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/UI7/I_ApexisUI7.xml ¶
r138 r139 549 549 elseif msConfStage == MS_CONF_STAGES.CREATE_DEVICE then 550 550 551 gatewayAddress = FindAddress()551 local gatewayAddress = FindAddress() 552 552 luup.variable_set(CAM_SID, "GatewayAddress", gatewayAddress, lug_device) 553 553 if gatewayAddress == "" then … … 675 675 -------------------------------------------------------------------------------- 676 676 677 function Reboot Camera()677 function Reboot() 678 678 679 679 local IP = luup.attr_get("ip", lug_device) … … 682 682 password = UrlEncode(password) 683 683 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 685 708 if not lug_cgiBin then 686 709 url = "http://".. IP .."/reboot.cgi?user=".. username .."&pwd=".. password … … 689 712 end 690 713 691 local status, content = luup.inet.wget(url) 714 luup.log("ApexisUI7:Reboot- Reboot camera") 715 status, content = luup.inet.wget(url) 692 716 if content and content:find("ok", 1, true) then 693 luup.log("ApexisUI7:Reboot Camera- Request sent OK")694 else 695 luup.log("ApexisUI7:Reboot Camera- 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) 696 720 end 697 721 end … … 859 883 860 884 if rebootCamera then 861 Reboot Camera(model)885 Reboot(model) 862 886 end 863 887 end … … 1604 1628 end 1605 1629 1606 luup.call_timer("Reboot Camera", 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") 1607 1631 luup.log("ApexisUI7:Startup- Startup OK") 1608 1632 end … … 1917 1941 1918 1942 <action> 1943 <serviceId>urn:micasaverde-com:serviceId:Camera1</serviceId> 1944 <name>Reboot</name> 1945 <run> 1946 Reboot() 1947 </run> 1948 </action> 1949 1950 <action> 1919 1951 <serviceId>urn:micasaverde-com:serviceId:SecuritySensor1</serviceId> 1920 1952 <name>SetArmed</name>
Note: See TracChangeset
for help on using the changeset viewer.