Skip to content

Switch all cameras to a specified setting

crmcrm
edited May 2017 in SecuritySpy
When I leave my home unoccupied, I use Indigo home control to switch all sensors to a state of 'home unoccupied'. I would like to extend this to set all my cameras to an 'unoccupied' configuration (all recording motion etc.) and on the house becoming occupied to switch all the cameras to a different setting. Is this possible, ideally via Indigo but directly within SecuritySpy would be fine? I want to avoid having to manually change each camera every time I leave the house unoccupied.

Comments

  • This is possible using some simple AppleScripts, as follows:

    tell application "SecuritySpy"
        arm mode MotionCapture
    end tell

    tell application "SecuritySpy"
        disarm mode MotionCapture
    end tell

    The three modes are ContinuousCapture, MotionCapture and Actions, and you can also specify All to arm/disarm all modes.
Sign In or Register to comment.