mirror of
https://github.com/elephantrobotics/mycobot_ros.git
synced 2026-07-05 19:47:04 +00:00
13 lines
No EOL
155 B
Python
13 lines
No EOL
155 B
Python
import enum
|
|
|
|
class Angle(enum.Enum):
|
|
J1 = '00'
|
|
J2 = '01'
|
|
J3 = '02'
|
|
J4 = '03'
|
|
J5 = '04'
|
|
J6 = '05'
|
|
|
|
|
|
class Coords(enum.Enum):
|
|
... |