-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cb64f13
commit dc495d7
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,20 @@ | ||
# rcb4 | ||
|
||
### Roseus interface for KXR system | ||
https://gist.github.com/iory/d8ff5bb8b0ebed12deca371b891c7e08 | ||
|
||
### Read worm gear magenc | ||
|
||
``` | ||
from rcb4.armh7interface import ARMH7Interface | ||
interface = ARMH7Interface() | ||
interface.auto_open() | ||
while True: | ||
sensors = interface.all_jointbase_sensors() | ||
for sensor in sensors: | ||
print(sensor.magenc) | ||
``` | ||
|
||
### Calibrate worm gear servo module | ||
https://gist.github.com/iory/53399a69cec6127558ae123059cc2961 |