#bus #luminator #flip-dot #lower-level

flipdot-core

Core types for describing communication with Luminator flip-dot and LED signs

3 unstable releases

0.7.1 Mar 4, 2024
0.7.0 Mar 2, 2024
0.6.0 Mar 3, 2021

#1027 in Hardware support

Download history 6/week @ 2024-02-15 20/week @ 2024-02-22 449/week @ 2024-02-29 54/week @ 2024-03-07 10/week @ 2024-03-14 12/week @ 2024-03-21 45/week @ 2024-03-28 44/week @ 2024-04-04

102 downloads per month
Used in 3 crates

MIT license

100KB
1.5K SLoC

flipdot-core

Core types for describing communication with Luminator flip-dot and LED signs.

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

However, flipdot_core is useful for crates that want to interact with the sign protocol at a lower level than the flipdot crate, or who want to provide their own SignBus implementations for use by flipdot.

Tested with a MAX3000 90 × 7 side sign. Should work with any flip-dot or LED sign that uses the 7-pin circular connector, but no guarantees.

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

Usage

Here's an example of directly interacting with a SignBus at the Message level instead of using Sign:

use flipdot_core::{Address, Message, Operation, SignBus, SignType, State};

// Assume we have a helper function to obtain a SignBus.
let mut bus: Box<dyn SignBus> = get_bus();

// Discover the sign and verify that is has not yet been configured.
let message = Message::Hello(Address(3));
let response = bus.process_message(message)?;
assert_eq!(Some(Message::ReportState(Address(3), State::Unconfigured)), response);

// Request that the sign receive the configuration data and verify that it acknowledges.
let message = Message::RequestOperation(Address(3), Operation::ReceiveConfig);
let response = bus.process_message(message)?;
assert_eq!(Some(Message::AckOperation(Address(3), Operation::ReceiveConfig)), response);

License

Distributed under the MIT license.

Dependencies

~3.5–5MB
~91K SLoC