use-end-effector 0.0.1

Primitive end-effector vocabulary for RustUse robotics
Documentation
  • Coverage
  • 100%
    33 out of 33 items documented1 out of 14 items with examples
  • Size
  • Source code size: 12.57 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 843.08 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 4s Average build duration of successful builds.
  • all releases: 4s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-robotics
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-end-effector

Primitive end-effector vocabulary for RustUse robotics.

This crate describes end-effector names, kinds, grip states, and tool mounts. It does not command grippers, implement tool changing logic, implement force control, or simulate contact.

Example

use use_end_effector::{EndEffectorKind, EndEffectorName, GripState, ToolMount};

let name = EndEffectorName::new("parallel-gripper")?;
let kind = "gripper".parse::<EndEffectorKind>()?;
let state = "open".parse::<GripState>()?;
let mount = ToolMount::new("tool0")?;

assert_eq!(name.as_str(), "parallel-gripper");
assert_eq!(kind.to_string(), "gripper");
assert_eq!(state.to_string(), "open");
assert_eq!(mount.as_str(), "tool0");
# Ok::<(), Box<dyn std::error::Error>>(())

The values are vocabulary only. They do not control hardware.

License

Licensed under either the MIT license or Apache License, Version 2.0.