Unibrain API-810 User Manual Page 32

  • Download
  • Add to my manuals
  • Print
  • Page
    / 97
  • Table of contents
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 31
32
Value property
Prototype
Boolean Value
Comments
This is a read only property that reflects the Trigger_Value field of the camera trigger control register (bit
11). In order to read this property, the property CanReadRaw of the FireiXTrigger object must be True,
otherwise an error will occur.
The resulting value can be considered as False being low and True being high signal value.
Visual Basic 6.0 syntax
Dim Value As Boolean
Value = Trigger.Value
C++ syntax
VARIANT_BOOL bValue;
HRESULT hr = pITrigger->get_Value(&bValue);
Mode property
Prototype
FireiXTriggerMode Mode
Comments
This property reads/sets the Trigger_Mode field of the camera trigger control register (bits 12 to 15). In
order to set this property, a call to method IsModeSupported of the FireiXTrigger object should first
be performed, to check if the value being set is supported in this camera.
FireiXTriggerMode is an enumerated value, with possible values being tmMode_0, tmMode_1,
tmMode_2, tmMode_3, tmMode_4, tmMode_5, tmMode_14 and tmMode_15.
Visual Basic 6.0 syntax
Dim TriggerMode As FireiXTriggerMode
TriggerMode = Trigger.Mode 'get
Trigger.Mode = tmMode_0 'set
C++ syntax
FireiXTriggerMode Mode;
HRESULT hr = pITrigger->get_Mode(&Mode); //get
hr = pITrigger ->put_Mode(tmMode_0); //set
Page view 31
1 2 ... 27 28 29 30 31 32 33 34 35 36 37 ... 96 97

Comments to this Manuals

No comments