twine-models 0.4.0

Domain-specific models and model-building tools for Twine
Documentation
1
2
3
4
5
6
7
8
//! Thermostat controllers for temperature regulation.
//!
//! This module provides setpoint-based thermostat logic with hysteresis
//! (deadband) to prevent rapid cycling between on/off states.

pub mod setpoint;

pub use setpoint::{Deadband, InvalidDeadband, SetpointThermostatInput, cooling, heating};