franka_rust 0.1.15

Rust bindings for the Franka Emika Panda robot
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::{FRANKA_DOF, FrankaRobot, robot::FrankaType};

#[derive(Default)]
pub struct _FrankaFP3;

impl FrankaType for _FrankaFP3 {
    const JOINT_NAMES: [&'static str; FRANKA_DOF] = [
        "fp3_joint1",
        "fp3_joint2",
        "fp3_joint3",
        "fp3_joint4",
        "fp3_joint5",
        "fp3_joint6",
        "fp3_joint7",
    ];
}

pub type FrankaFP3 = FrankaRobot<_FrankaFP3>;