Airbot SDK 5.1.6
This project is designed for airbot C++SDK
Loading...
Searching...
No Matches
speed_profile.hpp
Go to the documentation of this file.
1#ifndef SPEED_PROFILE_HPP_
2#define SPEED_PROFILE_HPP_
3
4#include <cstdint>
5
17namespace airbot {
18
26enum class SpeedProfile : int {
33 DEFAULT = 0,
34
41 SLOW = 1,
42
51 FAST = 2,
52};
53
54} // namespace airbot
55
56#endif // SPEED_PROFILE_HPP_
Namespace containing all Airbot SDK related definitions.
SpeedProfile
Enum representing predefined speed profiles for robot operation.
Definition speed_profile.hpp:26
@ SLOW
Slow speed profile.
@ DEFAULT
Default speed profile.
@ FAST
Fast speed profile.