ReduxLib C++ 2026.1.2
Loading...
Searching...
No Matches
DigoutFrameTrigger.h
1// Copyright (c) Bagholders of Redux Robotics and other contributors.
2// This is open source and can be modified and shared under the Mozilla Public License v2.0.
3
4#pragma once
5
7
8/**
9 * Digital output frame trigger configuration.
10 *
11 * When enabled, the device sends a digital output frame when the corresponding output changes state.
12 */
14 kDisabled = 0x0,
15 kRisingEdgeOnly = 0x1,
16 kFallingEdgeOnly = 0x2,
17 kRisingAndFalling = 0x3,
18};
19
20} // namespace redux::sensors::canandcolor
Definition Canandcolor.h:19
DigoutFrameTrigger
Definition DigoutFrameTrigger.h:13