From 34fb92ef21983e3a7d5e35bc9d3a1a5ea6053e11 Mon Sep 17 00:00:00 2001 From: ju6ge Date: Thu, 27 Feb 2025 22:05:59 +0100 Subject: [PATCH] document more types in main.rs --- rust/src/main.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/rust/src/main.rs b/rust/src/main.rs index 9e462fa..ff83ff3 100644 --- a/rust/src/main.rs +++ b/rust/src/main.rs @@ -127,6 +127,7 @@ struct PlantState { } #[derive(Serialize, Deserialize, Debug, PartialEq)] +/// humidity sensor error enum SensorError { Unknown, ShortCircuit { hz: f32, max: f32 }, @@ -134,13 +135,23 @@ enum SensorError { } #[derive(Debug, PartialEq, Default)] +/// State data for water tank +/// +/// TODO unify with TankStateMQTT struct TankState { + /// is there enough water in the tank enough_water: bool, + /// warning that water needs to be refilled soon warn_level: bool, + /// estimation how many ml are still in tank left_ml: u32, + /// if there is was an issue with the water level sensor + /// TODO merge with left_ml as Result sensor_error: bool, + /// raw water sensor value raw: u16, } + #[derive(Serialize)] struct TankStateMQTT { enough_water: bool,