tinkerforge

Crates.iotinkerforge
lib.rstinkerforge
version2.0.21
sourcesrc
created_at2018-11-08 13:05:23.739248
updated_at2024-02-27 17:29:37.747882
descriptionRust API bindings for https://www.tinkerforge.com Bricks and Bricklets.
homepagehttps://tinkerforge.com
repositoryhttps://github.com/Tinkerforge/generators
max_upload_size
id95475
size5,018,328
Admins (github:tinkerforge:admins)

documentation

README

Tinkerforge Rust Bindings

Latest version Documentation Minimum rustc version License

This crate provides API bindings for Tinkerforge bricks and bricklets.

How to install

Add tinkerforge = "2.0" to the [dependencies] of your project's Cargo.toml.

How to use

First, import the IP connection and any devices you want to use:

use tinkerforge::{ip_connection::*, temperature_bricklet::*}

You can than create instances like this:

let ipcon = IpConnection::new();
let t = TemperatureBricklet::new("UID", &ipcon);

where "UID" is the unique identifier of your brick or bricklet. Once the IP connection is established using:

ipcon.connect((HOST, PORT)).recv()??;

you can use the device's API, for example:

let temperature = t.get_temperature().recv()? as f32 / 100.0;

Further examples can be found here.

Rust version requirements

The bindings require the rust compiler in version 1.41 or higher.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be triple licensed as above, without any additional terms or conditions.

Commit count: 5488

cargo fmt