UCLV Dynamixel Utils
Loading...
Searching...
No Matches
wristmotor.hpp
1#ifndef WRISTMOTOR_H
2#define WRISTMOTOR_H
3
4#include "motor.hpp"
5
6using namespace uclv::dynamixel_utils;
7
11class WristMotor : public Motor {
12private:
13public:
14
25 WristMotor(const std::string& serial_port, int baudrate, float protocol_version,
26 dynamixel::PortHandler *const& portHandler, dynamixel::PacketHandler *const& packetHandler,
27 uint8_t id);
28
37 WristMotor(const std::string& serial_port, int baudrate, float protocol_version,
38 uint8_t id);
39
43 WristMotor();
44
45};
46
47#endif // WRISTMOTOR_H
The WristMotor class represents a wrist motor, which is a specific type of motor.
Definition wristmotor.hpp:11
WristMotor()
Default constructor.
Definition wristmotor.cpp:40
The Motor class represents a single motor connected to the system.
Definition motor.hpp:14