We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd2e8f3 commit 61864bdCopy full SHA for 61864bd
1 file changed
src/Dynamixel2Arduino.h
@@ -25,14 +25,12 @@
25
// TODO: Match the OP Mode to the actual value
26
// https://github.com/ROBOTIS-GIT/Dynamixel2Arduino/issues/73
27
enum OperatingMode{
28
- OP_POSITION = 0,
29
- OP_EXTENDED_POSITION,
30
- OP_CURRENT_BASED_POSITION,
31
- OP_VELOCITY,
32
- OP_PWM,
33
- OP_CURRENT,
34
-
35
- UNKNOWN_OP
+ OP_CURRENT = 0,
+ OP_VELOCITY = 1,
+ OP_POSITION = 3,
+ OP_EXTENDED_POSITION = 4,
+ OP_CURRENT_BASED_POSITION = 5,
+ OP_PWM = 16,
36
};
37
38
enum ParamUnit{
0 commit comments