2D robotic arm with arbitrary number of links and rotational joints.
Implementation of trajectory planning and kinematic control.
Real-time visualization of kinematic control while the end-effector follows a path (notebook).
- numpy
- matplotlib
from planarobot.planar_arm import PlanarArm
links = np.array([2, 1, 1]) # lengths of links
robot = PlanarArm(links)
...