logic-mesh 1.0.0

Control logic engine using event based and reactive blocks written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2022-2024, Radu Racariu.

//!
//! Block implementing time-related functionality
//!

pub mod calendar;
pub mod now;
pub mod schedule;
pub mod sun;

// Re-export implementations working with inputs and outputs
pub use calendar::Calendar;
pub use now::Now;
pub use schedule::Schedule;
pub use sun::Sun;