Crates.io | ur-script |
lib.rs | ur-script |
version | 0.2.0 |
source | src |
created_at | 2022-12-22 12:52:58.083353 |
updated_at | 2022-12-25 00:24:04.126085 |
description | UR e-series controller written in rust. Designed to be deployable on embedded systems without access to std. |
homepage | |
repository | https://github.com/Spodeian/URScript |
max_upload_size | |
id | 743879 |
size | 11,078 |
A library enabling efficient and effective control of UR5 cobots, in std
and no_std
environments.
This library currently provides:
no-std
environemntsThis library is aiming to provide:
Strings
or native variablesAdd this to your Cargo.toml
:
[dependencies]
// Replace * with latest version
ur_script = "*"
This crate can be used with the standard library by enabling the std
feature and optionally disabling the default libm
feature. Use this in Cargo.toml
:
[dependencies.ur_script]
// Replace * with latest version
ur_script = "*"
features = ["std"]
The libm
feature allows for the usage of floats
in no_std
builds.
More features to come as this library is developed.
This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.
This version of this library is built with nalgebra as a core dependency, which licensed under the Apache 2.0 license.