EduArt Sensor Ring Library 3.0.0
Loading...
Searching...
No Matches
LightMode.hpp
Go to the documentation of this file.
1// Copyright (c) 2026 EduArt Robotik GmbH
2
9
10#pragma once
11
12#include <cstdint>
13
14namespace eduart {
15
16namespace device {
17
22enum class LightMode : std::uint8_t {
23 Off = 0x02,
24 Dimmed = 0x03,
25 HighBeam = 0x04,
26 FlashAll = 0x05,
27 FlashLeft = 0x06,
28 FlashRight = 0x07,
29 Pulsation = 0x08,
30 Rotation = 0x09,
31 Running = 0x0A,
32 MapDistance = 0x0B,
33 FixedColor = 0x0C,
34 PulsationColor = 0x0D,
35 IndividualColor = 0x0E
36};
37
38} // namespace device
39
40} // namespace eduart
LightMode
Light mode enumeration.
Definition LightMode.hpp:22