© 2016 Thorlabs Scientific Imaging352
DCx Camera Functional Description and SDK Manual
Return values
When used with
IS_GET_EXTERNALTRIGGER
Returns the current setting
When used with
IS_GET_TRIGGER_STATUS
Returns the current signal level at the trigger
input
When used with
IS_GET_SUPPORTED_TRIGGER_MODE
Returns the supported modes linked by logical
ORs
The function can not be executed in the current
camera operating mode (free run, trigger or
standby).
Function executed successfully
Related functions
is_CaptureVideo()
is_FreezeVideo()
is_ForceTrigger()
is_SetTriggerCounter()
is_SetTriggerDelay()
is_IO()
Example
//Enable trigger mode and set high-active flash mode.
is_SetExternalTrigger(hCam, IS_SET_TRIGGER_SOFTWARE);
// Set the flash to a high active pulse for each image in the trigger mode
UINT nMode = IO_FLASH_MODE_TRIGGER_HI_ACTIVE;
is_IO(m_hCam, IS_IO_CMD_FLASH_SET_MODE, (void*)&nMode, sizeof(nMode));
is_FreezeVideo(hCam, IS_WAIT);
Sample programs
uc480 Simple Trigger (C++)
uc480 IO (C++)