embedded-multi-page-hmi 0.3.1

Multi page HMI targetting embedded devices with a few of buttons input and a constrainted display
Documentation
//! Home of several general purpose page implementations

mod basic;
mod enter_string;
mod menu;

// Re-exports
#[allow(unused_imports)]
pub use basic::{BasicPage, ShutdownPage, StartupPage, TextPage};
#[allow(unused_imports)]
pub use enter_string::EnterStringPage;
#[allow(unused_imports)]
pub use menu::MenuPage;