UCLV Dynamixel Utils
Loading...
Searching...
No Matches
fingermotor.hpp
1#pragma once
2
3#include "motor.hpp"
4
5using namespace uclv::dynamixel_utils;
6
11class FingerMotor : public Motor {
12private:
13 // Declaration of private variables (if any).
14
15public:
16
27 FingerMotor(const std::string& serial_port, int baudrate, float protocol_version,
28 dynamixel::PortHandler *const& portHandler, dynamixel::PacketHandler *const& packetHandler,
29 uint8_t id);
30
39 FingerMotor(const std::string& serial_port, int baudrate, float protocol_version,
40 uint8_t id);
41
46
47};
The FingerMotor class represents a finger motor, which is a specific type of motor.
Definition fingermotor.hpp:11
FingerMotor()
Default constructor.
Definition fingermotor.cpp:43
The Motor class represents a single motor connected to the system.
Definition motor.hpp:14