ReduxLib C++ 2026.1.2
Loading...
Searching...
No Matches
ProximityPeriod.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 * Proximity integration period selection.
10 *
11 * Values correspond to firmware-defined integration periods used by the proximity sensor.
12 */
13enum class ProximityPeriod {
14 k3125us = 0x0,
15 k6250us = 0x1,
16 k12500us = 0x2,
17 k25ms = 0x3,
18 k50ms = 0x4,
19 k100ms = 0x5,
20 k200ms = 0x6,
21 k400ms = 0x7,
22 k800ms = 0x8,
23};
24
25} // namespace redux::sensors::canandcolor
Definition Canandcolor.h:19
ProximityPeriod
Definition ProximityPeriod.h:13