EduArt Sensor Ring Library 3.0.0
Loading...
Searching...
No Matches
SensorBoardParams.hpp
Go to the documentation of this file.
1// Copyright (c) 2026 EduArt Robotik GmbH
2
9
10#pragma once
11
14
15namespace eduart {
16
17namespace device {
24 SensorBoardType board_type = SensorBoardType::Undefined;
25
27 math::Vector3 rotation = { 0, 0, 0 };
28
31};
32
33} // namespace device
34
35} // namespace eduart
Collection of math functions.
Board type enum for sensor board hardware variants (matches firmware).
SensorBoardType
Definition SensorBoardType.hpp:21
Parameter structure of a sensor board. A sensor board is one circuit board.
Definition SensorBoardParams.hpp:22
math::Vector3 translation
Translation part of the sensor pose. Values: XYZ coordinates in meters.
Definition SensorBoardParams.hpp:30
SensorBoardType board_type
Hardware board type. When set to Undefined, the board is created with all supported device types (bac...
Definition SensorBoardParams.hpp:24
math::Vector3 rotation
Rotation part of the sensors pose. The rotation is applied in the order Roll(x) - Pitch(y) - Yaw(z)....
Definition SensorBoardParams.hpp:27
Vector of length 3.
Definition Vector3.hpp:25