Skip to main content

ntcip/dms/
mod.rs

1// ntcip::dms
2//
3// Copyright (C) 2019-2025  Minnesota Department of Transportation
4//
5//! 1203 \([PDF]\) — Dynamic message signs
6//!
7//! [PDF]: https://www.ntcip.org/file/2018/11/NTCIP1203v03f.pdf
8pub mod config;
9mod font;
10mod graphic;
11pub mod multi;
12mod oer;
13mod pattern;
14mod render;
15mod sign;
16
17pub use font::{CharacterEntry, Font, FontError, FontTable, tfon};
18pub use graphic::{Graphic, GraphicError, GraphicTable};
19pub use pattern::MessagePattern;
20pub use render::{Page, Pages};
21pub use sign::{Dms, DmsBuilder, SignError};