flipdot-serial

Crates.ioflipdot-serial
lib.rsflipdot-serial
version0.7.1
sourcesrc
created_at2021-03-03 02:44:05.580726
updated_at2024-03-04 03:07:52.792719
descriptionTools for communicating with Luminator signs over serial
homepage
repositoryhttps://github.com/alusch/flipdot
max_upload_size
id362952
size9,545
Adam Lusch (alusch)

documentation

https://docs.rs/flipdot-serial

README

flipdot-serial

Tools for communicating with Luminator signs over serial.

For the basic task of sign communication, you likely want to use the high-level API in the flipdot crate instead.

However, you can use the configure_port function to configure serial port appropriately if you're doing custom lower-level communication.

Intended only for hobbyist and educational purposes. Not affiliated with Luminator in any way.

Usage

use std::time::Duration;

let mut port = serial::open("COM3")?;
flipdot_serial::configure_port(&mut port, Duration::from_secs(5))?;
// Now ready for communication with a sign (8N1 19200 baud).

License

Distributed under the MIT license.

Commit count: 52

cargo fmt