forked from jes1510/python_dynamixels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaxReg.py
More file actions
52 lines (52 loc) · 1.1 KB
/
axReg.py
File metadata and controls
52 lines (52 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
AXRegisters = {
'ModelL' : 12 ,
'ModelH' : 0 ,
'FWVersion' : 0 ,
'ID' : 1 ,
'BaudRate' : 1 ,
'ReturnDelayTime' : 250 ,
'CWAngleLimitL' : 0 ,
'CWAngleLimitH' : 0 ,
'CCWAngleLimitL' : 255 ,
'CCWAngleLimitH' : 3 ,
'Reserved1' : 0 ,
'TempLimit' : 85 ,
'MinVoltage' : 60 ,
'MaxVoltage' : 190 ,
'MaxTorqueL' : 255 ,
'MaxTorqueH' : 3 ,
'StatusReturnLevel' : 2 ,
'AlarmLED' : 4 ,
'AlarmShutdown' : 4 ,
'Reserved2' : 0 ,
'DownCalibrationL' : 0 ,
'DownCalibrationH' : 0 ,
'UpCalibrationL' : 0 ,
'UpCalibrationH' : 0 ,
'TorqueEnable' : 0 ,
'LED' : 0 ,
'CWComplianceMargin' : 0 ,
'CCWComplianceMargin' : 0 ,
'CWComplianceSlope' : 32 ,
'CCWComplianceSlope' : 32 ,
'GoalPositionL' : 0 ,
'GoalPositionH' : 0 ,
'MovingSpeedL' : 0 ,
'MovingSpeedH' : 0 ,
'TorqueLimitL' : 0 ,
'TorqueLimitH' : 0 ,
'PresentPositionL' : 0 ,
'PresentPositionH' : 0 ,
'PresentSpeedL' : 0 ,
'PresentSpeedH' : 0 ,
'PresentLoadL' : 0 ,
'PresentLoadH' : 0 ,
'PresentVoltage' : 0 ,
'PresentTemperature' : 0 ,
'RegisteredInstruction' : 0 ,
'Reserved3' : 0 ,
'Moving' : 0 ,
'Lock' : 0 ,
'PunchL' : 32 ,
'PunchH' : 0 ,
}