libjaka 0.1.14

Rust bindings for the Jaka robot
Documentation
1
2
3
4
5
6
7
8
9
import libjaka.libjaka

def test_func(state: libjaka.ArmState, duration):
    print("state:", state)
    print("duration:", duration)
    motion = libjaka.MotionType.Joint([0, 0, 0, 0, 0, 0])
    return (motion,True)

libjaka.test_closure(test_func)