dynamixel
plantimager.dynamixel Link
Implementation of a class dedicated to controlling a Gimbal.
This Gimbal implementation is based on the Dynamixel xl430 SDK wrapping.
Gimbal Link
Gimbal(dev='/dev/ttyUSB1', baud_rate=1000000, pan_id=1, tilt_id=2, pan0=0, tilt0=1024)
Bases: AbstractGimbal
Source code in plantimager/dynamixel.py
43 44 45 46 47 48 49 50 51 52 53 54 |
|
moveto Link
moveto(pan, tilt)
Move to given angles (in degrees)
Source code in plantimager/dynamixel.py
90 91 92 93 94 95 |
|
moveto_async Link
moveto_async(pan, tilt)
Move to given angles (in degrees)
Source code in plantimager/dynamixel.py
81 82 83 84 85 86 87 88 |
|