Please enable JavaScript to view this site.

IDS peak 2.8.0 / uEye+ firmware 3.33

Reads the value of the selected counter at the time of its reset by the CounterResetSource or by the CounterReset command. CounterValueAtReset represents the last counter value latched before resetting the counter.

Name

CounterValueAtReset[CounterSelector]

Category

CounterAndTimerControl

Interface

Integer

Access

Read

Unit

-

Visibility

Expert

Values

≥ 0

Standard

SFNC

Availability uEye+

icon-gev icon-u3v

Availability uEye

-

Code example

C++

// Before accessing CounterValueAtReset, make sure CounterSelector is set correctly
// Set CounterSelector to "Counter0"
nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("CounterSelector")->SetCurrentEntry("Counter0");
// Determine the current CounterValueAtReset
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("CounterValueAtReset")->Value();

C#

// Before accessing CounterValueAtReset, make sure CounterSelector is set correctly
// Set CounterSelector to "Counter0"
nodeMapRemoteDevice.FindNode<peak.core.nodes.EnumerationNode>("CounterSelector").SetCurrentEntry("Counter0");
// Determine the current CounterValueAtReset
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("CounterValueAtReset").Value();

Python

# Before accessing CounterValueAtReset, make sure CounterSelector is set correctly
# Set CounterSelector to "Counter0" (str)
nodeMapRemoteDevice.FindNode("CounterSelector").SetCurrentEntry("Counter0")
# Determine the current CounterValueAtReset (int)
value = nodeMapRemoteDevice.FindNode("CounterValueAtReset").Value()

© 2024 IDS Imaging Development Systems GmbH