EduArt Sensor Ring Library 3.0.0
Loading...
Searching...
No Matches
WS2812b_Params.hpp
1// Copyright (c) 2026 EduArt Robotik GmbH
2//
3// Parameter structure for the WS2812b LED strip.
4
5#pragma once
6
9#include "sensorring/platform/SensorringExport.hpp"
10
11namespace eduart {
12
13namespace device {
14
19struct SENSORRING_EXPORT WS2812b_Params : public DeviceParams {
21 Orientation orientation = Orientation::None;
22};
23
24} // namespace device
25
26} // namespace eduart
Parameter structure for a device.
Orientation enum shared across device types.
Orientation
Possible orientations of a sensor board. Used to rotate/mirror light animations and thermal images.
Definition Orientation.hpp:21
Base parameter structure of a device. A device is one sensor or actuator on a sensor board.
Definition DeviceParams.hpp:21
Parameter structure of the sensor lights of a sensor board. Not all sensor boards have lights.
Definition WS2812b_Params.hpp:19
Orientation orientation
Orientation of the sensor board. Used to to mirror the light animations.
Definition WS2812b_Params.hpp:21