Hauppauge Capture

Plugin Usage

The Capture alarm zones can be armed or disarmed using the HS devices window.  When a zone is armed, the status will show Armed.  Likewise, when disarmed, the zone displays Disarmed.

 

There are no properties to set in the Capture Class as all the settings are made through the Capture Config form.

 

There are a number of methods (functions/subroutines) and one property that can be accessed in the plugin to perform functions and return information.  Methods can be called by any HS script or event with a one-liner (one-liner must start with &).  The general format to call functions in the plugin is:

 

&Hs.Plugin(“Hauppauge Capture”).MethodName (“parameter”)

 

An alternate method to call the plugin is with this script:

Dim Plugins, PlugItem

set Plugins = HS.GetPlugins

for each PlugItem in Plugins

            if PlugItem.name = " Hauppauge Capture" then

                        PlugItem.MotionDetected (“Motion Sensor Name”)

            end if

next

 

Callable Methods and Properties

Motion Detected

Take Picture

Switch Camera

Capture Status and CaptureRetryCount

TerminatePlugin

TerminateUtilities

ReleaseWinTV

 

Back