6 releases

0.1.0 Jul 16, 2022
0.0.5 Jul 15, 2022

#1632 in Hardware support

21 downloads per month

MIT license

120KB
3.5K SLoC

uhppote-rs

uhppote-rs is a safe Rust library for access control systems based on the UHPPOTE UT0311-L0x TCP/IP Wiegand access control boards. This library is based on the uhppoted project, but is a complete rewrite in Rust.

Usage

For more info about how to use this library, see the uhppote-rs crate on crate.io.


lib.rs:

uhppote-rs is a safe Rust library for access control systems based on the UHPPOTE UT0311-L0x TCP/IP Wiegand access control boards. This library is based on the uhppoted project.

Most interactions with the system happen through the Device type.

Example:

use uhppote_rs::Uhppote;
let uhppoted = Uhppoted::default();
let device = uhppoted.get_device(423196779).unwrap();
let status = device.get_status().unwrap();

Dependencies

~3MB
~65K SLoC