Skip to content

Triggered Image Acquisition#

If the camera is configured for triggered image acquisition, you can trigger image captures at particular points in time.

Most modern imaging applications work with triggered image acquisition.

If you want to acquire images continuously without having to trigger acquisitions, see free run image acquisition.

Using the Feature#

Hardware and Software Triggering#

When the camera is configured for hardware triggering, the following can act as a trigger signal:

  • An electrical signal applied to one of the camera's input lines (external hardware triggering)
  • An internal signal generated by the camera, e.g., a timer or a counter signal (internal hardware triggering)

When the camera is configured for software triggering, a software command or signal acts as a trigger signal. The software command can be executed using the pylon API.

In terms of configuration, the only difference between hardware and software triggering is the trigger source. For hardware triggering, you must choose a hardware trigger source. For software triggering, you must choose a software trigger source.

Also, some configuration steps don't apply to software triggering, e.g., choosing a trigger activation mode.

Configuring Triggered Image Acquisition#

Tip

Before starting, make yourself familiar with the trigger types available for your camera and how they can help you in your imaging setup.

To configure triggered image acquisition:

  1. Set the TriggerSelector parameter to select the type of trigger you want to configure.
  2. Set the TriggerMode parameter to On to enable the trigger.
  3. Configure the trigger:
    1. Set the TriggerSource parameter to define which signal triggers the trigger.
    2. If applicable, set the TriggerActivation parameter to define which signal transition triggers the trigger.
    3. If applicable, set the TriggerDelay parameter to define when the trigger is triggered.
  4. Repeat the above steps for all triggers you want to configure.

Info

  • Knowing about the camera's image acquisition process is essential to optimizing your system for triggered image acquisition. For more information, see Acquisition Timing Information.
  • Don't trigger the camera at a rate that exceeds one or both of the following limiting factors:

    • The maximum allowed frame rate for the current camera settings. If you apply trigger signals to the camera when it is not ready to receive them, the signals will be ignored.
    • The host computer's capacity limits for data transfer, storage, or both. If you try to acquire more images than the host computer is able to process, frames may be dropped.
  • To check whether the camera is ready to receive trigger signals, monitor the camera's Trigger Wait signals or use the Acquisition Status feature.

  • On some cameras, enabling triggered image acquisition disables overlapping image acquisition and therefore lowers the camera's maximum frame rate. This applies to all cameras in this table where "Overlapping Image Acquisition Availability" is specified as "Only when the camera is configured for free run image acquisition".

Example 1: Basic Hardware Triggering#

Assume you want to configure the camera so that image acquisition starts whenever a rising signal on physical input line 1 is received.

To setup this image acquisition, set the parameter as follows:

TriggerSelector = FrameStart
TriggerMode = On
TriggerActivation = RisingEdge
TriggerSource = Line1

Example 2: Advanced Hardware Triggering#

Assume you want to configure the camera so that image exposure starts whenever a rising signal on physical input line 1 is received, and stops whenever a falling signal on line 2 is received.

ExposureMode = TriggerControlled

TriggerSelector = ExposureStart
TriggerMode = On
TriggerActivation = RisingEdge
TriggerSource = Line1

TriggerSelector = ExposureEnd
TriggerMode = On
TriggerActivation = FallingEdge
TriggerSource = Line2

Example 3: Software Triggering#

Assume you want to configure the camera so that image acquisition starts whenever a software command is received.

TriggerSelector = FrameStart
TriggerMode = On
TriggerSource = Software

Now, executing the TriggerSoftware command via the pylon API starts image acquisition.

Example 4: Triggering a Series of Images#

Assume you want to trigger the acquisition of a series of images with only one trigger signal.

TriggerSelector = FrameBurstStart
TriggerMode = On
AcquisitionBurstFrameCount = 3
TriggerActivation = RisingEdge
TriggerSource = Line1

Now, whenever a rising signal on physical input line 1 is received, the camera automatically acquires a complete series of 3 images.

Trigger Types#

You can set the trigger type using the TriggerSelector parameter.

This selects which trigger can be configured. For example, you can select the Exposure Start trigger to configure when and how the camera should start exposing.

Depending on your camera model, the following trigger types are available:

Frame Burst Triggers#

If available, you can use the Frame Burst Start, End, and Active triggers to control the acquisition of a series of images (a "burst" of images).

Info

On ace classic/U/L GigE cameras, the Frame Burst Start trigger is called "Acquisition Start". The triggers are identical, only the names differ.

The number of images per series is specified by the AcquisitionBurstFrameCount parameter. The maximum number of images per series is 255 on ace classic/U/L cameras and 1023 on other cameras.

By default, these triggers are disabled, and the camera acquires single images only.

If you enable these triggers and the camera receives the corresponding signal via the trigger source configured, the following happens:

  • Frame Burst Start: The camera initializes the acquisition of a series of images.
    If the Frame Start trigger is enabled, the camera is now ready to receive Frame Start trigger signals.
    If the Frame Start trigger is disabled and the Exposure Start trigger is enabled, the camera automatically initializes the next image.
    If the Frame Start trigger is disabled and the Exposure Start trigger is also disabled or not available, the camera automatically acquires the entire series of images.
  • Frame Burst End: The camera finalizes the acquisition of a series of images.
    If this trigger is disabled or not available, the camera automatically finalizes the series after the last image acquisition.
  • Frame Burst Active: When the trigger signal rises, the camera generates a Frame Burst Start trigger signal. When the trigger signal falls, the camera generates a Frame Burst End trigger signal. You can change this behavior by setting the trigger activation mode.

Frame Triggers#

Info

  • If you want to use any of these triggers, the exposure mode must be set to Timed or TriggerWidth.

If available, you can use the Frame Start, End, and Active triggers to control the acquisition of a single image. These are the trigger types used most commonly. In most image applications, you will only need to configure these trigger types.

By default, these triggers are disabled, and the camera controls image acquisition automatically.

If you enable these triggers and the camera receives the corresponding signal via the trigger source configured, the following happens:

  • Frame Start: The camera initializes the acquisition of one image.
    If the Exposure Start trigger is enabled, the camera is now ready to receive Exposure Start trigger signals.
    If the Exposure Start trigger is not available or disabled, the camera automatically starts exposing the image. Note that in this case, exposure starts with a delay (see exposure start delay).
  • Frame End: The camera finalizes the acquisition of one image.
    If this trigger is disabled or not available, the camera automatically finalizes image acquisition after exposure.
  • Frame Active: When the trigger signal rises, the camera generates a Frame Start trigger signal. When the trigger signal falls, the camera generates a Frame End trigger signal. You can change this behavior by setting the trigger activation mode.

Exposure Triggers#

If available, you can use the Exposure Start, End, and Active triggers to control the exposure of a single image.

Info

  • If you want to use any of these triggers, the exposure mode must be set to TriggerControlled.
  • If the exposure mode is set to Timed or TriggerWidth, these triggers can't be enabled, i.e., their TriggerMode setting will permanently be set to Off.
  • If you want to use the Exposure Start and End triggers, you must enable both for them to work.

By default, these triggers are disabled, and the camera exposes images automatically.

If you enable these triggers, set the exposure mode to TriggerControlled, and the camera receives the corresponding signal via the trigger source configured, the following happens:

  • Exposure Start: The camera starts exposing one image.
  • Exposure End: The camera stops exposing one image.
  • Exposure Active: When the trigger signal rises, the camera generates an Exposure Start trigger signal. When the trigger signal falls, the camera generates an Exposure End trigger signal. You can change this behavior by setting the trigger activation mode.

Trigger Sources#

You can set the trigger source using the TriggerSource parameter.

This defines how a trigger is triggered. For example, you can specify that a trigger is triggered by an electrical signal or by a timer signal.

Depending on your camera model, the following trigger sources are available:

Hardware Trigger Sources#

External Sources#
  • Line1, Line2, Line3, Line4: The trigger selected can be triggered by applying an electrical signal to I/O line 1, 2, 3, or 4.
    If the I/O line is a GPIO line, the line must be configured for input.
  • CXPTrigger0, CXPTrigger1: The trigger selected can be triggered by receiving a trigger signal from a CXP-12 interface card.

    You can find information about configuring the interface card in the Configuring a CXP-12 Interface Card topic. Triggering the camera via the interface card has the following advantages:

    • A short trigger delay.
      The trigger accuracy is less than 0.5 µs when using CXP-10 or CXP-12. It is less than 1 µs when using CXP-6, CXP-5, or CXP-3.
    • The generated I/O trigger packets are transmitted to the camera via the CoaXPress data cable. This may be useful for your cable setup.

    The CXPTrigger0 and CXPTrigger1 triggers correspond to the LinkTrigger0 and LinkTrigger1 trigger packet definitions in the CoaXPress Standard version 2.0.

Internal Sources#
  • Action1: The trigger selected can be triggered using the Action Commands feature.
  • Counter1Active, Counter2Active: The trigger selected can be triggered using the Counter feature. The trigger signal will be high (1) as long as the given counter is counting and low (0) as long as it is not counting.
  • Counter1Start, Counter2Start: The trigger selected can be triggered using the Counter feature. A trigger signal is sent whenever the given counter starts counting.
  • Counter1End, Counter2End: The trigger selected can be triggered using the Counter feature. A trigger signal is sent whenever the given counter stops counting.
  • Timer1Active, Timer2Active: The trigger selected can be triggered using the Timer feature. The trigger signal will be high (1) as long as the given timer is running and low (0) as long as it is not running.
  • Timer1End, Timer2End: The trigger selected can be triggered using the Timer feature. A trigger signal is sent whenever the given timer has elapsed.
  • PeriodicSignal1: The trigger selected can be triggered using the Periodic Signal feature. A trigger signal is sent repeatedly. Its period is defined by the BslPeriodicSignalPeriod parameter.

Software Trigger Sources#

  • Software: The trigger selected can be triggered by executing a TriggerSoftware command via the pylon API.
  • SoftwareSignal1, SoftwareSignal2, SoftwareSignal3: The trigger selected can be triggered using the Software Signal Pulse feature.

Trigger Activation Modes#

You can set the activation mode using the TriggerActivation parameter.

This setting only applies to hardware triggering. It defines which signal transition activates the selected trigger. For example, you can specify that a trigger becomes active when the trigger signal falls.

Depending on your camera model, the following trigger activation modes are available:

  • RisingEdge: The trigger becomes active when the trigger signal rises, i.e., when the signal status changes from low to high.
  • FallingEdge: The trigger becomes active when the trigger signal falls, i.e., when the signal status changes from high to low.
  • AnyEdge: The trigger becomes active when the trigger signal falls or rises.
  • LevelHigh: The trigger is active as long as the trigger signal is high.
  • LevelLow: The trigger is active as long as the trigger signal is low.

Trigger Delay#

You can add a delay between the receipt of a trigger signal and the moment the trigger becomes active.

To do so:

  1. Set the TriggerSelector parameter to the desired trigger type.
  2. Set the TriggerDelay parameter to the desired delay (in µs).

Info

If you want to add a delay longer than the maximum possible value, use the Timer feature (if available).

Specifics#

Show all camera models

Camera Model Available Trigger Types Available Hardware Trigger Sources Available Software Trigger Sources Available Trigger Activation Modes
a2A640-240gmSWIR Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A640-240umSWIR Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1280-80gmSWIR Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1280-125umSWIR Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1920-51gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1920-51gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1920-51gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1920-51gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1920-160ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1920-160ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1920-160umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1920-160umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1920-165g5cBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A1920-165g5mBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2440-98g5cBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2440-98g5mBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2448-23gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2448-23gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2448-23gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2448-23gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2448-75ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2448-75ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2448-75umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2448-75umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2448-105g5cBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2448-105g5mBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2590-22gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2590-22gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2590-22gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2590-22gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2590-60ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2590-60ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2590-60umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2590-60umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2600-20gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2600-20gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2600-20gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2600-20gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2600-64ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2600-64ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2600-64umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2600-64umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2840-14gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2840-14gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2840-14gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2840-14gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2840-48ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2840-48ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2840-48umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2840-48umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2840-67g5cBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A2840-67g5mBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A3840-13gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A3840-13gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A3840-13gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A3840-13gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A3840-45ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A3840-45ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A3840-45umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A3840-45umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4096-9gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4096-9gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4096-9gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4096-9gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4096-30ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4096-30ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4096-30umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4096-30umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4096-44g5cBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4096-44g5mBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4200-12gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4200-12gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4200-12gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4200-12gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4200-40ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4200-40ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4200-40umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4200-40umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4504-5gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4504-5gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4504-5gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4504-5gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4504-18ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4504-18ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4504-18umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4504-18umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4504-27g5cBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4504-27g5mBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4508-6gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4508-6gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4508-6gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4508-6gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4508-20ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4508-20ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4508-20umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A4508-20umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5320-7gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5320-7gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5320-7gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5320-7gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5320-23ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5320-23ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5320-23umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5320-23umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5320-34g5cBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5320-34g5mBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5328-4gcBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5328-4gcPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5328-4gmBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5328-4gmPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5328-15ucBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5328-15ucPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5328-15umBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5328-15umPRO Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5328-22g5cBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
a2A5328-22g5mBAS Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Action 1
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Periodic Signal 1
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
acA640-121gm Frame Start
Aquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA640-300gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA640-300gm Frame Start
Aquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA640-750uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA640-750um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA720-290gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA720-290gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA720-520uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA720-520um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA800-200gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA800-200gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA800-510uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA800-510um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1280-60gc Frame Start
Acquisition Start
Line1 Software Rising Edge
Falling Edge
acA1280-60gm Frame Start
Acquisition Start
Line 1 Software Rising Edge
Falling Edge
acA1300-60gc Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA1300-60gm Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA1300-60gmNIR Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA1300-75gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA1300-75gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA1300-200uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1300-200um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1440-73gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA1440-73gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA1440-220uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1440-220um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1600-20gc Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA1600-20uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1600-60gc Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA1600-60gm Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA1920-25gc Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA1920-25gm Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA1920-25uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1920-25um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1920-40gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA1920-40gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA1920-40uc Frame Start
Frame Burst Start
Line 1
Line 2
Line 3
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1920-40ucMED Frame Start
Frame Burst Start
Line 1
Line 2
Line 3
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1920-40um Frame Start
Frame Burst Start
Line 1
Line 2
Line 3
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1920-40umMED Frame Start
Frame Burst Start
Line 1
Line 2
Line 3
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1920-48gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA1920-48gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA1920-50gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA1920-50gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA1920-150uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1920-150um Frame Start
Frame Burst Start
Line 1
Line 2
Line 3
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1920-155uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1920-155ucMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1920-155um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA1920-155umMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2000-50gc Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA2000-50gm Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA2000-165uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2000-165um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2040-25gc Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA2040-25gm Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA2040-25gmNIR Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA2040-35gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA2040-35gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA2040-55uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2040-55um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2040-90uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2040-90um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2040-90umNIR Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2040-120uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2040-120um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2440-20gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA2440-20gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA2440-35uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2440-35ucMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2440-35um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2440-35umMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2440-75uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2440-75ucMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2440-75um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2440-75umMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2500-14gc Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA2500-14gm Frame Start
Acquisition Start
Line 1 Software
Action 1
Rising Edge
Falling Edge
acA2500-14uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2500-14um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2500-20gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA2500-20gcMED Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA2500-20gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA2500-20gmMED Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA2500-60uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA2500-60um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA3088-16gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA3088-16gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA3088-57uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA3088-57ucMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA3088-57um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA3088-57umMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA3800-10gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA3800-10gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA3800-14uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA3800-14um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4024-8gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA4024-8gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA4024-29uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4024-29um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4096-11gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA4096-11gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA4096-30uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4096-30ucMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4096-30um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4096-30umMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4096-40uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4096-40ucMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4096-40um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4096-40umMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4112-8gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA4112-8gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA4112-20uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4112-20ucMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4112-20um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4112-20umMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4112-30uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4112-30ucMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4112-30um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA4112-30umMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA5472-5gc Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA5472-5gm Frame Start
Acquisition Start
Line 1
Line 3
Software
Action 1
Rising Edge
Falling Edge
acA5472-17uc Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA5472-17ucMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA5472-17um Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
acA5472-17umMED Frame Start
Frame Burst Start
Line 1
Line 3
Line 4
Software
Software Signal 1
Software Signal 2
Software Signal 3 (on some camera models)
Rising Edge
Falling Edge
boA1936-400cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA1936-400cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA2448-250cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA2448-250cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA2832-190cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA2832-190cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA4096-93cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA4096-93cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA4096-180cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA4096-180cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA4112-68cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA4112-68cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA4500-45cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA4500-45cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA4504-100cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA4504-100cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA5120-150cc Frame Start Line 1 Software
CXP Trigger 0
Rising Edge
boA5120-150cm Frame Start Line 1 Software
CXP Trigger 0
Rising Edge
boA5120-230cc Frame Start Line 1 Software
CXP Trigger 0
Rising Edge
boA5120-230cm Frame Start Line 1 Software
CXP Trigger 0
Rising Edge
boA5320-150cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA5320-150cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA5328-100cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA5328-100cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA6500-36cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA6500-36cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA8100-16cc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA8100-16cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
boA9344-30cc Frame Start Line 1 Software
CXP Trigger 0
Rising Edge
boA9344-30cm Frame Start Line 1 Software
CXP Trigger 0
Rising Edge
boA9344-70cc Frame Start Line 1 Software
CXP Trigger 0
Rising Edge
boA9344-70cm Frame Start Line 1 Software
CXP Trigger 0
Rising Edge
boA13440-17cm Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
CXP Trigger 0
CXP Trigger 1
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
daA720-520uc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Line 4
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
daA720-520um Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Line 4
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
daA1280-54uc Frame Start Line 1
Line 2
Software Rising Edge
Falling Edge
daA1280-54um Frame Start Line 1
Line 2
Software Rising Edge
Falling Edge
daA1440-220uc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Line 4
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
daA1440-220um Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Line 4
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
daA1600-60uc Frame Start Line 1
Line 2
Software Rising Edge
Falling Edge
daA1600-60um Frame Start Line 1
Line 2
Software Rising Edge
Falling Edge
daA1920-15um Frame Start Line 1
Line 2
Software Rising Edge
Falling Edge
daA1920-30uc Frame Start Line 1
Line 2
Software Rising Edge
Falling Edge
daA1920-30um Frame Start Line 1
Line 2
Software Rising Edge
Falling Edge
daA1920-160uc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Line 4
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
daA1920-160um Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Line 4
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
daA2448-70uc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Line 4
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
daA2448-70um Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Line 4
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
daA2500-14uc Frame Start Line 1
Line 2
Software Rising Edge
Falling Edge
daA2500-14um Frame Start Line 1
Line 2
Software Rising Edge
Falling Edge
daA3840-45uc Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Line 4
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
daA3840-45um Frame Start
Frame End
Frame Active
Frame Burst Start
Frame Burst End
Frame Burst Active
Exposure Start
Exposure End
Exposure Active
Line 1
Line 2
Line 3
Line 4
Counter 1 Active
Counter 1 End
Counter 1 Start
Counter 2 Active
Counter 2 End
Counter 2 Start
Timer 1 Active
Timer 1 End
Timer 2 Active
Timer 2 End
Software
Software Signal 1
Software Signal 2
Software Signal 3
Rising Edge
Falling Edge
Any Edge
Level High
Level Low
puA1280-54uc Frame Start None Software Trigger Activation feature not supported
puA1280-54um Frame Start None Software Trigger Activation feature not supported
puA1600-60uc Frame Start None Software Trigger Activation feature not supported
puA1600-60um Frame Start None Software Trigger Activation feature not supported
puA1920-30uc Frame Start None Software Trigger Activation feature not supported
puA1920-30um Frame Start None Software Trigger Activation feature not supported
puA2500-14uc Frame Start None Software Trigger Activation feature not supported
puA2500-14um Frame Start None Software Trigger Activation feature not supported

Sample Code#

// Enable triggered image acquisition for the Frame Start trigger
camera.TriggerMode.SetValue(TriggerMode_On);
// Set the trigger source to Line 1
camera.TriggerSource.SetValue(TriggerSource_Line1);
// Set the trigger activation mode to level high
camera.TriggerActivation.SetValue(TriggerActivation_LevelHigh);
INodeMap& nodemap = camera.GetNodeMap();
// Enable triggered image acquisition for the Frame Start trigger
CEnumParameter(nodemap, "TriggerMode").SetValue("On");
// Set the trigger source to Line 1
CEnumParameter(nodemap, "TriggerSource").SetValue("Line1");
// Set the trigger activation mode to level high
CEnumParameter(nodemap, "TriggerActivation").SetValue("LevelHigh");
// Enable triggered image acquisition for the Frame Start trigger
camera.Parameters[PLCamera.TriggerMode].SetValue(PLCamera.TriggerMode.On);
// Set the trigger source to Line 1
camera.Parameters[PLCamera.TriggerSource].SetValue(PLCamera.TriggerSource.Line1);
// Set the trigger activation mode to level high
camera.Parameters[PLCamera.TriggerActivation].SetValue(PLCamera.TriggerActivation.LevelHigh);
/* Macro to check for errors */
#define CHECK(errc) if (GENAPI_E_OK != errc) printErrorAndExit(errc)
GENAPIC_RESULT errRes = GENAPI_E_OK;  /* Return value of pylon methods */
/* Enable triggered image acquisition for the Frame Start trigger */
errRes = PylonDeviceFeatureFromString(hdev, "TriggerMode", "On");
CHECK(errRes);
/* Set the trigger source to Line 1 */
errRes = PylonDeviceFeatureFromString(hdev, "TriggerSource", "Line1");
CHECK(errRes);
/* Set the trigger activation mode to level high */
errRes = PylonDeviceFeatureFromString(hdev, "TriggerActivation", "LevelHigh");
CHECK(errRes);
# Enable triggered image acquisition for the Frame Start trigger
camera.TriggerMode.Value = "On"
# Set the trigger source to Line 1
camera.TriggerSource.Value = "Line1"
# Set the trigger activation mode to level high
camera.TriggerActivation.Value = "LevelHigh"

You can also use the pylon Viewer to easily set the parameters.