跳转到内容
STAGING SERVER
DEVELOPMENT SERVER

Timer#

相机的 Timer 功能允许您配置在遇到特定相机事件时变为高电平、在特定持续时间后变为低电平的计时器输出信号。

该功能的使用#

The implementation of this feature varies depending on the camera:

ace 2, boost R, dart M/R, and racer 2 Cameras#

运作原理#

有两个计时器可用:计时器 1 和计时器 2。

计时器的工作方式如下:

  • 发生启动内部计时器的触发源事件
  • 延迟开始到期。
  • arm 延迟开始到期。
  • 延迟到期后,计时器输出信号将变为高电平并在您配置的持续时间内保持高电平。
  • 持续时间到期时,定时器输出信号变为低电平。
  • arm 延迟到期后,相机可以接收下一个触发源事件。

计时器操作

配置计时器#

要配置计时器:

  1. TimerSelector 参数设置为所需的计时器,例如 Timer1
  2. TimerDuration 参数设置为所需的计时器持续时间(以微秒为单位)。
  3. TimerDelay 参数设置为所需的计时器延迟(以微秒为单位)。
  4. TimerTriggerArmDelay 参数设置为所需的 arm 延迟(以微秒为单位)。
  5. LineSelector 参数设置为要用于计时器信号的输出线路。
    如果该线路是 GPIO 线路,则必须将该线路配置为输出
  6. 如果在步骤 1 中选择了计时器 1,请将 LineSource 参数设置为 Timer1Active
  7. 如果在步骤 1 中选择了计时器 2,请将 LineSource 参数设置为 Timer2Active

For information about the maximum possible Timer parameter values for your camera model, see the Specifics table.

启动计时器#

要启动计时器,请执行以下操作:

  1. TimerSelector 参数设置为所需的计时器,例如 Timer1
  2. TimerTriggerSource 参数设置为要用于启动计时器的源,例如 Line2
  3. 如果适用,请设置 TimerTriggerActivation 参数设置为以下值:
    • RisingEdge(默认值):当信号上升时,即信号状态从低变高时,计时器启动。
    • FallingEdge:当信号下降时,即信号状态从高变低时,计时器启动。
    • AnyEdge:当信号下降或上升时,计时器启动。
    • LevelHigh:当信号为高电平时,计时器启动。当信号变为低电平时,计时器停止,必须重新启动
    • LevelLow:当信号为低电平时,计时器启动。当信号变为高电平时,计时器停止,必须重新启动
  4. 通过在选定的计时器触发源上发送信号来启动计时器。

在启动时,计时器的状态立即从 TimerTriggerWait 变为 TimerActive,无论延迟如何设置都是如此。但是,计时器输出信号仅在延迟结束后才变为高电平。

信息

TimerTriggerActivation 参数仅适用于可能为高 (1) 或低 (0) 的计时器触发源,即 I/O 信号或诸如 ExposureActive 之类的“激活”信号。

重置计时器#

要重置计时器,请执行 TimerReset 命令。

计时器的状态TimerActive 更改为 TimerTriggerWait

现在,无论 arm 延迟设置如何,都可以立即重启计时器。

获取计时器状态#

要获取计时器的当前状态,请获取 TimerStatus 参数的值。此为只读参数。

可能的值包括:

  • TimerTriggerWait:计时器正在等待启动
  • TimerActive:计时器已启动。发生触发源事件时,无论延迟如何设置,计时器都会立即切换到此状态。如果设置了 arm 延迟,则计时器将保持在 TimerActive状态,直到 arm 延迟到期为止。
  • TimerIdle:计时器处于空闲状态。每当将 TimerTriggerSource 参数设置为 Off 时,计时器就处于此状态,即无法启动计时器。

ace Classic/U/L 相机#

运作原理#

一个计时器可用,即 Timer 1。这是计时器的工作方式:

  • 发生启动内部计时器的触发源事件(如 Exposure Start)。
  • 延迟开始到期。
  • 延迟到期后,计时器输出信号将变为高电平并在您配置的持续时间内保持高电平。
  • 信号持续时间到期时,定时器输出信号变为低电平。

计时器操作

配置 Timer#

  1. LineSelector 参数设置为要用于计时器信号的输出线路。
    如果该线路是 GPIO 线路,则必须将该线路配置为输出
  2. LineSource 参数设置为 TimerActive
  3. TimerTriggerSource 参数设置为可用的触发源事件之一:

    • ExposureStart:计时器在曝光开始时启动。
    • FlashWindowStart:打开闪烁窗口时,计时器开始计时。
  4. TimerDuration 参数设置为所需的计时器持续时间(以微秒为单位)。

  5. TimerDelay 参数设置为所需的计时器延迟(以微秒为单位)。

信息

在部分相机机型上,您可能必须延长计时器最长持续时间并增大计时器延迟值。

增加最大计时器持续时间和延迟#

部分相机机型上TimerDurationTimerDelay 参数限制为默认最大值 4 095

要延长这些型号的计时器最长持续时间

  1. 将所需的计时器持续时间除以 4095,然后将结果四舍五入为最接近的整数。
    示例:假设您要将计时器持续时间设置为 50 000 µs。50000 / 4095 = 12.21 ≈ 13。
  2. TimerDurationTimebaseAbs 参数设置为在步骤 1 中确定的值,本例中为 13。
  3. TimerDuration 参数设置为所需的计时器持续时间,本例中为 50 000。
    相机在内部按以下方式计算计时器持续时间:TimerDurationRaw x TimerDurationTimebaseAbs = TimerDurationAbs

要增加这些型号的计时器最大延迟值:

  1. 将所需的计时器延迟除以 4095,并将结果四舍五入为最接近的整数。
    示例:假设您要将计时器延迟设置为 6 000 µs。6000 / 4095 = 1.47 ≈ 2。
  2. TimerDelayTimebaseAbs 参数设置为在步骤 1 中确定的值,本例中为 2。
  3. TimerDelay 参数设置为所需的计时器延迟,本例中为 6000。
    相机在内部按以下方式计算计时器延迟:TimerDelayRaw x TimerDelayTimebaseAbs = TimerDelayAbs

信息

根据 TimerDurationTimebaseAbsTimerDelayTimebaseAbs 参数值,相机可能无法达到所需的确切计时器持续时间和延迟。
例如,如果将 TimerDurationTimebaseAbs 参数设置为 13,则相机使用的计时器持续时间只能是 13 的倍数。因此,如果将 TimerDuration 参数设置为 50 000,而将 TimerDurationTimebaseAbs 参数设置为 13,则相机将自动更改设置为最接近的可能值(例如 49 998,它是最接近的 13 的倍数)。

附加参数#

  • TimerSelector:设置要配置的计时器。因为 Basler ace Classic/U/L 相机仅支持一个计时器,该参数是预设的,无法更改。

详情#

显示所有相机型号

相机型号 Maximum Timer Value [µs]
a2A640-240gmSWIR Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A640-240umSWIR Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A1280-80gmSWIR Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A1280-125umSWIR Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A1920-51gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A1920-51gcIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A1920-51gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A1920-51gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A1920-51gmIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A1920-51gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A1920-160ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A1920-160ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A1920-160umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A1920-160umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A1920-165g5cBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A1920-165g5mBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2048-35gmSWIR Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2048-37gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2048-37gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2048-37gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2048-37gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2048-110umSWIR Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2048-114g5cBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2048-114g5mBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2048-114ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2048-114ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2048-114umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2048-114umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2048-173cmSWIR Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2440-98g5cBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2440-98g5mBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-23gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-23gcIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-23gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-23gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-23gmIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-23gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-75ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2448-75ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2448-75umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2448-75umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2448-105g5cBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-105g5mBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-120cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-120cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-210cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2448-210cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2560-20gmSWIR Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2560-70umSWIR Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2560-131cmSWIR Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2590-22gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2590-22gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2590-22gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2590-22gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2590-60ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2590-60ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2590-60umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2590-60umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2600-20gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2600-20gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2600-20gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2600-20gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2600-64ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2600-64ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2600-64umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2600-64umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2840-14gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2840-14gcIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2840-14gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2840-14gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2840-14gmIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2840-14gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2840-14gmUV Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2840-48ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2840-48ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2840-48umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2840-48umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2840-48umUV Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A2840-67g5cBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2840-67g5mBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2840-67g5mUV Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2840-86cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A2840-86cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A3536-9gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A3536-9gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A3536-9gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A3536-9gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A3536-31ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A3536-31ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A3536-31umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A3536-31umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A3536-42g5cBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A3536-42g5mBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A3840-13gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A3840-13gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A3840-13gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A3840-13gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A3840-45ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A3840-45ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A3840-45umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A3840-45umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4096-9gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4096-9gcIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4096-9gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4096-9gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4096-9gmIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4096-9gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4096-30ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4096-30ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4096-30umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4096-30umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4096-44g5cBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4096-44g5mBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4096-67cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4096-67cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4200-12gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4200-12gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4200-12gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4200-12gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4200-40ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4200-40ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4200-40umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4200-40umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4504-5gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4504-5gcIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4504-5gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4504-5gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4504-5gmIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4504-5gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4504-18ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4504-18ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4504-18umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4504-18umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4504-27g5cBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4504-27g5mBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4504-42cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4504-42cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4508-6gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4508-6gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4508-6gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4508-6gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A4508-20ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4508-20ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4508-20umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A4508-20umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A5060-4gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5060-4gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5060-15ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A5060-15umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A5060-21g5cBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5060-21g5mBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5060-35cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5060-35cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5320-7gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5320-7gcIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5320-7gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5320-7gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5320-7gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5320-7gmip67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5320-23ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A5320-23ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A5320-23umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A5320-23umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A5320-34g5cBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5320-34g5mBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5320-52cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5320-52cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5328-4gcBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5328-4gcIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5328-4gcPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5328-4gmBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5328-4gmIP67 Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5328-4gmPRO Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5328-15ucBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A5328-15ucPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A5328-15umBAS Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A5328-15umPRO Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
a2A5328-22g5cBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5328-22g5mBAS Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5328-35cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
a2A5328-35cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
acA640-121gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA640-300gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA640-300gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA640-750uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA640-750um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA720-290gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA720-290gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA720-520uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA720-520um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA800-200gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA800-200gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA800-510uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA800-510um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1280-60gc Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA1280-60gm Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA1300-60gc Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA1300-60gm Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA1300-60gmNIR Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA1300-75gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1300-75gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1300-200uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1300-200um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1440-73gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1440-73gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1440-220uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1440-220um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1600-60gc Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA1600-60gm Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA1920-25gc Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA1920-25gm Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA1920-25uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-25um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-40gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-40gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-40uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-40ucMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-40um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-40umMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-48gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-48gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-50gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-50gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-150uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-150um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-155uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-155ucMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-155um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA1920-155umMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2000-50gc Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA2000-50gm Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA2000-165uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2000-165um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2040-25gc Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA2040-25gm Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA2040-25gmNIR Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA2040-35gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2040-35gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2040-55uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2040-55um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2040-90uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2040-90um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2040-90umNIR Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2040-120uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2040-120um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2440-20gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2440-20gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2440-35uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2440-35ucMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2440-35um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2440-35umMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2440-75uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2440-75ucMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2440-75um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2440-75umMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2500-14gc Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA2500-14gm Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA2500-14uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2500-14um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2500-20gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2500-20gcMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2500-20gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2500-20gmMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2500-60uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA2500-60um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA3088-16gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA3088-16gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA3088-57uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA3088-57ucMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA3088-57um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA3088-57umMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA3800-10gc Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA3800-10gm Timer Duration: 139 230 (default maximum: 4 095)
Timer Delay: 139 230 (default maximum: 4 095)
acA3800-14uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA3800-14um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4024-8gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4024-8gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4024-29uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4024-29um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4096-11gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4096-11gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4096-30uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4096-30ucMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4096-30um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4096-30umMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4096-40uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4096-40ucMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4096-40um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4096-40umMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4112-8gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4112-8gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4112-20uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4112-20ucMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4112-20um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4112-20umMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4112-30uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4112-30ucMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4112-30um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA4112-30umMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA5472-5gc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA5472-5gm Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA5472-17uc Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA5472-17ucMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA5472-17um Timer Duration: 16 777 215
Timer Delay: 16 777 215
acA5472-17umMED Timer Duration: 16 777 215
Timer Delay: 16 777 215
boA1936-400cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA1936-400cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA2448-250cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
bo2448-250cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA2832-190cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
bo2832-190cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA4096-93cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA4096-93cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA4096-180cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
bo4096-180cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA4112-68cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA4112-68cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA4500-45cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA4500-45cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA4504-100cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA4504-100cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA5120-150cc 不支持 Timer 功能
boA5120-150cm 不支持 Timer 功能
boA5120-230cc 不支持 Timer 功能
boA5120-230cm 不支持 Timer 功能
boA5320-150cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA5320-150cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA5328-100cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA5328-100cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA6500-36cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA6500-36cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA8100-16cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA8100-16cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
boA9344-30cc 不支持 Timer 功能
boA9344-30cm 不支持 Timer 功能
boA9344-70cc 不支持 Timer 功能
boA9344-70cm 不支持 Timer 功能
boA13440-17cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
daA720-520uc Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
daA720-520um Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
daA1280-54uc 不支持 Timer 功能
daA1280-54um 不支持 Timer 功能
daA1440-220uc Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
daA1440-220um Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
daA1600-60uc 不支持 Timer 功能
daA1600-60um 不支持 Timer 功能
daA1920-15um 不支持 Timer 功能
daA1920-30uc 不支持 Timer 功能
daA1920-30um 不支持 Timer 功能
daA1920-160uc Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
daA1920-160um Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
daA2448-70uc Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
daA2448-70um Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
daA2500-14uc 不支持 Timer 功能
daA2500-14um 不支持 Timer 功能
daA3840-45uc Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
daA3840-45um Timer Duration: 21 472 152.45
Timer Delay: 21 472 152.45
Timer Trigger Arm Delay: 21 472 152.45
dmA720-290gc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA720-290gm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA1440-73gc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA1440-73gm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA1920-51gc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA1920-51gm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA2048-37gc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA2048-37gm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA2448-23gc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA2448-23gm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA2840-14gc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA2840-14gm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA3536-9gc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA3536-9gm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA4096-9gc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
dmA4096-9gm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
puA1280-54uc 不支持 Timer 功能
puA1280-54um 不支持 Timer 功能
puA1600-60uc 不支持 Timer 功能
puA1600-60um 不支持 Timer 功能
puA1920-30uc 不支持 Timer 功能
puA1920-30um 不支持 Timer 功能
puA2500-14uc 不支持 Timer 功能
puA2500-14um 不支持 Timer 功能
r2L2048-29gc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L2048-58gm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L2048-62cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L2048-62g5c Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L2048-172cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L2048-172g5m Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L4096-14gc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L4096-29gm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L4096-42cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L4096-42g5c Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L4096-84cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L4096-84g5m Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L8192-80cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L8192-240cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L16384-60cc Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47
r2L16384-120cm Timer Duration: 21 474 836.47
Timer Delay: 21 474 836.47
Timer Trigger Arm Delay: 21 474 836.47

示例代码#

ace 2, boost R, dart M/R, and racer 2 Cameras#
// Select Timer 1
camera.TimerSelector.SetValue(TimerSelector_Timer1);
// Set the timer duration to 1000 microseconds
camera.TimerDuration.SetValue(1000.0);
// Set the timer delay to 500 microseconds
camera.TimerDelay.SetValue(500.0);
// Set the timer trigger arm delay to 5000 microseconds
camera.TimerTriggerArmDelay.SetValue(5000.0);
// Select Line 2 and configure the line as output
camera.LineSelector.SetValue(LineSelector_Line2);
camera.LineMode.SetValue(LineMode_Output);
// Specify that the timer signal is output on Line 2
camera.LineSource.SetValue(LineSource_Timer1Active);
// Specify that the timer starts whenever a rising signal is detected on Line 1
camera.TimerTriggerSource.SetValue(TimerTriggerSource_Line1);
camera.TimerTriggerActivation.SetValue(TimerTriggerActivation_RisingEdge);
// Reset the timer
camera.TimerReset.Execute();
// Get the current status of the timer
TimerStatusEnums timerStatus = camera.TimerStatus.GetValue();
INodeMap& nodemap = camera.GetNodeMap();
// Select Timer 1
CEnumParameter(nodemap, "TimerSelector").SetValue("Timer1");
// Set the timer duration to 1000 microseconds
CFloatParameter(nodemap, "TimerDuration").SetValue(1000.0);
// Set the timer delay to 500 microseconds
CFloatParameter(nodemap, "TimerDelay").SetValue(500.0);
// Set the timer trigger arm delay to 5000 microseconds
CFloatParameter(nodemap, "TimerTriggerArmDelay").SetValue(5000.0);
// Select Line 2 and configure the line as output
CEnumParameter(nodemap, "LineSelector").SetValue("Line2");
CEnumParameter(nodemap, "LineMode").SetValue("Output");
// Specify that the timer signal is output on Line 2
CEnumParameter(nodemap, "LineSource").SetValue("Timer1Active");
// Specify that the timer starts whenever a rising signal is detected on Line 1
CEnumParameter(nodemap, "TimerTriggerSource").SetValue("Line1");
CEnumParameter(nodemap, "TimerTriggerActivation").SetValue("RisingEdge");
// Reset the timer
CCommandParameter(nodemap, "TimerReset").Execute();
// Get the current status of the timer
String_t timerStatus = CEnumParameter(nodemap, "TimerStatus").GetValue();
// Select Timer 1
camera.Parameters[PLCamera.TimerSelector].SetValue(PLCamera.TimerSelector.Timer1);
// Set the timer duration to 1000 microseconds
camera.Parameters[PLCamera.TimerDuration].SetValue(1000.0);
// Set the timer delay to 500 microseconds
camera.Parameters[PLCamera.TimerDelay].SetValue(500.0);
// Set the timer trigger arm delay to 5000 microseconds
camera.Parameters[PLCamera.TimerTriggerArmDelay].SetValue(5000.0);
// Select Line 2 and configure the line as output
camera.Parameters[PLCamera.LineSelector].SetValue(PLCamera.LineSelector.Line2);
camera.Parameters[PLCamera.LineMode].SetValue(PLCamera.LineMode.Output);
// Specify that the timer signal is output on Line 2
camera.Parameters[PLCamera.LineSource].SetValue(PLCamera.LineSource.Timer1Active);
// Specify that the timer starts whenever a rising signal is detected on Line 1
camera.Parameters[PLCamera.TimerTriggerSource].SetValue(PLCamera.TimerTriggerSource.Line1);
camera.Parameters[PLCamera.TimerTriggerActivation].SetValue(PLCamera.TimerTriggerActivation.RisingEdge);
// Reset the timer
camera.Parameters[PLCamera.TimerReset].Execute();
// Get the current status of the timer
string timerStatus = camera.Parameters[PLCamera.TimerStatus].GetValue();
/* 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 */
size_t len = 0;
char timerStatus_str[64] = {0};
/* Select Timer 1 */
errRes = PylonDeviceFeatureFromString(hdev, "TimerSelector", "Timer1");
CHECK(errRes);
/* Set the timer duration to 1000 microseconds */
errRes = PylonDeviceSetFloatFeature(hdev, "TimerDuration", 1000.0);
CHECK(errRes);
/* Set the timer delay to 500 microseconds */
errRes = PylonDeviceSetFloatFeature(hdev, "TimerDelay", 500.0);
CHECK(errRes);
/* Set the timer trigger arm delay to 5000 microseconds */
errRes = PylonDeviceSetFloatFeature(hdev, "TimerTriggerArmDelay", 5000.0);
CHECK(errRes);
/* Select Line 2 and configure the line as output */
errRes = PylonDeviceFeatureFromString(hdev, "LineSelector", "Line2");
CHECK(errRes);
errRes = PylonDeviceFeatureFromString(hdev, "LineMode", "Output");
CHECK(errRes);
/* Specify that the timer signal is output on Line 2 */
errRes = PylonDeviceFeatureFromString(hdev, "LineSource", "Timer1Active");
CHECK(errRes);
/* Specify that the timer starts whenever a rising signal is detected on Line 1 */
errRes = PylonDeviceFeatureFromString(hdev, "TimerTriggerSource", "Line1");
CHECK(errRes);
errRes = PylonDeviceFeatureFromString(hdev, "TimerTriggerActivation", "RisingEdge");
CHECK(errRes);
/* Reset the timer */
errRes = PylonDeviceExecuteCommandFeature(hdev, "TimerReset");
CHECK(errRes);
/* Get the current status of the timer */
len = sizeof(timerStatus_str);
errRes = PylonDeviceFeatureToString(hdev, "TimerStatus", timerStatus_str, &len);
CHECK(errRes);
# Select Timer 1
camera.TimerSelector.Value = "Timer1"
# Set the timer duration to 1000 microseconds
camera.TimerDuration.Value = 1000.0
# Set the timer delay to 500 microseconds
camera.TimerDelay.Value = 500.0
# Set the timer trigger arm delay to 5000 microseconds
camera.TimerTriggerArmDelay.Value = 5000.0
# Select Line 2 and configure the line as output
camera.LineSelector.Value = "Line2"
camera.LineMode.Value = "Output"
# Specify that the timer signal is output on Line 2
camera.LineSource.Value = "Timer1Active"
# Specify that the timer starts whenever a rising signal is detected on Line 1
camera.TimerTriggerSource.Value = "Line1"
camera.TimerTriggerActivation.Value = "RisingEdge"
# Reset the timer
camera.TimerReset.Execute()
# Get the current status of the timer
timerStatus = camera.TimerStatus.Value
ace Classic/U/L GigE 相机#
// Select Line 2 (output line)
camera.LineSelector.SetValue(LineSelector_Line2);
// Specify that the timer signal is output on Line 2
camera.LineSource.SetValue(LineSource_TimerActive);
// Specify that the timer starts when exposure starts
camera.TimerTriggerSource.SetValue(TimerTriggerSource_ExposureStart);
// Set the timer duration to 1000 microseconds
camera.TimerDurationAbs.SetValue(1000.0);
// Set the timer delay to 500 microseconds
camera.TimerDelayAbs.SetValue(500.0);
INodeMap& nodemap = camera.GetNodeMap();
// Select Line 2 (output line)
CEnumParameter(nodemap, "LineSelector").SetValue("Line2");
// Specify that the timer signal is output on Line 2
CEnumParameter(nodemap, "LineSource").SetValue("TimerActive");
// Specify that the timer starts when exposure starts
CEnumParameter(nodemap, "TimerTriggerSource").SetValue("ExposureStart");
// Set the timer duration to 1000 microseconds
CFloatParameter(nodemap, "TimerDurationAbs").SetValue(1000.0);
// Set the timer delay to 500 microseconds
CFloatParameter(nodemap, "TimerDelayAbs").SetValue(500.0);
// Select Line 2 (output line)
camera.Parameters[PLCamera.LineSelector].SetValue(PLCamera.LineSelector.Line2);
// Specify that the timer signal is output on Line 2
camera.Parameters[PLCamera.LineSource].SetValue(PLCamera.LineSource.TimerActive);
// Specify that the timer starts when exposure starts
camera.Parameters[PLCamera.TimerTriggerSource].SetValue(PLCamera.TimerTriggerSource.ExposureStart);
// Set the timer duration to 1000 microseconds
camera.Parameters[PLCamera.TimerDurationAbs].SetValue(1000.0);
// Set the timer delay to 500 microseconds
camera.Parameters[PLCamera.TimerDelayAbs].SetValue(500.0);
/* 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 */
/* Select Line 2 (output line) */
errRes = PylonDeviceFeatureFromString(hdev, "LineSelector", "Line2");
CHECK(errRes);
/* Specify that the timer signal is output on Line 2 */
errRes = PylonDeviceFeatureFromString(hdev, "LineSource", "TimerActive");
CHECK(errRes);
/* Specify that the timer starts when exposure starts */
errRes = PylonDeviceFeatureFromString(hdev, "TimerTriggerSource", "ExposureStart");
CHECK(errRes);
/* Set the timer duration to 1000 microseconds */
errRes = PylonDeviceSetFloatFeature(hdev, "TimerDurationAbs", 1000.0);
CHECK(errRes);
/* Set the timer delay to 500 microseconds */
errRes = PylonDeviceSetFloatFeature(hdev, "TimerDelayAbs", 500.0);
CHECK(errRes);
# Select Line 2 (output line)
camera.LineSelector.Value = "Line2"
# Specify that the timer signal is output on Line 2
camera.LineSource.Value = "TimerActive"
# Specify that the timer starts when exposure starts
camera.TimerTriggerSource.Value = "ExposureStart"
# Set the timer duration to 1000 microseconds
camera.TimerDurationAbs.Value = 1000.0
# Set the timer delay to 500 microseconds
camera.TimerDelayAbs.Value = 500.0
其他相机#
// Select Line 2 (output line)
camera.LineSelector.SetValue(LineSelector_Line2);
// Specify that the timer signal is output on Line 2
camera.LineSource.SetValue(LineSource_Timer1Active);
// Specify that the timer starts when exposure starts
camera.TimerTriggerSource.SetValue(TimerTriggerSource_ExposureStart);
// Set the timer duration to 1000 microseconds
camera.TimerDuration.SetValue(1000.0);
// Set the timer delay to 500 microseconds
camera.TimerDelay.SetValue(500.0);
INodeMap& nodemap = camera.GetNodeMap();
// Select Line 2 (output line)
CEnumParameter(nodemap, "LineSelector").SetValue("Line2");
// Specify that the timer signal is output on Line 2
CEnumParameter(nodemap, "LineSource").SetValue("Timer1Active");
// Specify that the timer starts when exposure starts
CEnumParameter(nodemap, "TimerTriggerSource").SetValue("ExposureStart");
// Set the timer duration to 1000 microseconds
CFloatParameter(nodemap, "TimerDuration").SetValue(1000.0);
// Set the timer delay to 500 microseconds
CFloatParameter(nodemap, "TimerDelay").SetValue(500.0);
// Select Line 2 (output line)
camera.Parameters[PLCamera.LineSelector].SetValue(PLCamera.LineSelector.Line2);
// Specify that the timer signal is output on Line 2
camera.Parameters[PLCamera.LineSource].SetValue(PLCamera.LineSource.Timer1Active);
// Specify that the timer starts when exposure starts
camera.Parameters[PLCamera.TimerTriggerSource].SetValue(PLCamera.TimerTriggerSource.ExposureStart);
// Set the timer duration to 1000 microseconds
camera.Parameters[PLCamera.TimerDuration].SetValue(1000.0);
// Set the timer delay to 500 microseconds
camera.Parameters[PLCamera.TimerDelay].SetValue(500.0);
/* 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 */
/* Select Line 2 (output line) */
errRes = PylonDeviceFeatureFromString(hdev, "LineSelector", "Line2");
CHECK(errRes);
/* Specify that the timer signal is output on Line 2 */
errRes = PylonDeviceFeatureFromString(hdev, "LineSource", "Timer1Active");
CHECK(errRes);
/* Specify that the timer starts when exposure starts */
errRes = PylonDeviceFeatureFromString(hdev, "TimerTriggerSource", "ExposureStart");
CHECK(errRes);
/* Set the timer duration to 1000 microseconds */
errRes = PylonDeviceSetFloatFeature(hdev, "TimerDuration", 1000.0);
CHECK(errRes);
/* Set the timer delay to 500 microseconds */
errRes = PylonDeviceSetFloatFeature(hdev, "TimerDelay", 500.0);
CHECK(errRes);
# Select Line 2 (output line)
camera.LineSelector.Value = "Line2"
# Specify that the timer signal is output on Line 2
camera.LineSource.Value = "Timer1Active"
# Specify that the timer starts when exposure starts
camera.TimerTriggerSource.Value = "ExposureStart"
# Set the timer duration to 1000 microseconds
camera.TimerDuration.Value = 1000.0
# Set the timer delay to 500 microseconds
camera.TimerDelay.Value = 500.0

您也可以使用 pylon Viewer 轻松设置参数。