ntcip 0.14.4

NTCIP: National Transportation Communications for ITS Protocol
Documentation
// ntcip::dms
//
// Copyright (C) 2019-2025  Minnesota Department of Transportation
//
//! 1203 \([PDF]\) — Dynamic message signs
//!
//! [PDF]: https://www.ntcip.org/file/2018/11/NTCIP1203v03f.pdf
pub mod config;
mod font;
mod graphic;
pub mod multi;
mod oer;
mod pattern;
mod render;
mod sign;

pub use font::{CharacterEntry, Font, FontError, FontTable, tfon};
pub use graphic::{Graphic, GraphicError, GraphicTable};
pub use pattern::MessagePattern;
pub use render::{Page, Pages};
pub use sign::{Dms, DmsBuilder, SignError};