ReduxLib C++ 2026.1.2
Loading...
Searching...
No Matches
DigoutOperation.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#include <cstdint>
6
8
9/**
10 * Digital output slot operations.
11 *
12 * These are used when building digital output logic chains.
13 */
14enum class DigoutOperation : uint8_t {
15 kEquals = 0x00,
16 kLessThan = 0x01,
17 kGreaterThan = 0x02,
18 kLessThanOrEquals = 0x03,
19 kGreaterThanOrEquals = 0x04,
20 kPrevSlotTrue = 0x20,
21 kPrevClauseTrue = 0x21,
22};
23
24} // namespace redux::sensors::canandcolor
Definition Canandcolor.h:19
DigoutOperation
Definition DigoutOperation.h:14