Crates.io | rzw |
lib.rs | rzw |
version | 0.1.0 |
source | src |
created_at | 2018-08-31 14:28:03.944075 |
updated_at | 2018-08-31 14:28:03.944075 |
description | Rust library for controling Z-Wave networks. |
homepage | https://github.com/Roba1993 |
repository | https://github.com/Roba1993 |
max_upload_size | |
id | 82366 |
size | 84,985 |
The rzw
crate provides a native functionality to control a Z-Wave network over a USB Z-Wave dongle. It's completely written in Rust to ensure safety and performance.
The rzw
crate depends on the serial create, which is compatible with Windows and any Unix operating system that implements the termios API. The following platforms are confirmed to be compatible:
rzw
crate requires Rust 1.9 or later.Add rzw
as a dependency in Cargo.toml
:
[dependencies]
rzw = { git = "https://github.com/Roba1993/rzw" }
Use the rzw::Controller
as starting point to communicate, with the Z-Wave network.
extern crate rzw;
fn main() {
// Access the zwave network
let zwave = rzw::open("/dev/tty.usbmodem1411").unwrap();
// get all node ids
let nodes = zwave.nodes();
// loop over the nodes
for node in nodes {
// print the available command classes for each node
println!("{:?}" zwave.node(node).map(|n| n.get_commands()));
// set the basic value on all nodes
// for binary switch this means, turn them on
zwave.node(node_id).map(|n| n.basic_set(0xFF)).unwrap();
}
}
Copyright © 2016 Robert Schütte
Distributed under the MIT License.