implement more functions for TankState
This commit is contained in:
parent
fb180630e4
commit
e878a774ff
114
rust/src/tank.rs
114
rust/src/tank.rs
@ -1,4 +1,4 @@
|
|||||||
use crate::config::TankConfig;
|
use crate::config::{self, PlantControllerConfig, TankConfig};
|
||||||
|
|
||||||
const OPEN_TANK_VOLTAGE: f32 = 3.0;
|
const OPEN_TANK_VOLTAGE: f32 = 3.0;
|
||||||
|
|
||||||
@ -68,15 +68,59 @@ fn raw_voltage_to_tank_fill_percent(
|
|||||||
|
|
||||||
|
|
||||||
impl TankState {
|
impl TankState {
|
||||||
pub fn left_ml(&self, config: &TankConfig) -> Result<u32, TankError> {
|
pub fn left_ml(&self, config: &TankConfig) -> Result<f32, TankError> {
|
||||||
match self {
|
match self {
|
||||||
TankState::TankSensorDisabled => Err(TankError::SensorMissing),
|
TankState::TankSensorDisabled => Err(TankError::SensorDisabled),
|
||||||
TankState::TankSensorPresent(raw_value_mv) => {
|
TankState::TankSensorPresent(raw_value_mv) => {
|
||||||
let tank_fill_percent = raw_voltage_to_tank_fill_percent(raw_value_mv, config);
|
let tank_fill_percent = raw_voltage_to_tank_fill_percent(raw_value_mv, config)?;
|
||||||
todo!()
|
//TODO(judge) move logging to more sensible place
|
||||||
|
//println!(
|
||||||
|
//"Tank sensor returned mv {} as {}% leaving {} ml useable",
|
||||||
|
//rv.raw, percent as u8, rv.left_ml
|
||||||
|
//);
|
||||||
|
Ok(config.tank_useable_ml as f32 * tank_fill_percent / 100.)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
pub fn enough_water(&self, config: &TankConfig) -> Result<bool, TankError> {
|
||||||
|
match self {
|
||||||
|
TankState::TankSensorDisabled => Err(TankError::SensorDisabled),
|
||||||
|
TankState::TankSensorPresent(raw_value_mv) => {
|
||||||
|
let tank_fill_percent = raw_voltage_to_tank_fill_percent(raw_value_mv, config)?;
|
||||||
|
if tank_fill_percent > config.tank_empty_percent {
|
||||||
|
//TODO(judge) move logging to more sensible place
|
||||||
|
//println!(
|
||||||
|
//"Enough water, current percent is {}, minimum empty level is {}",
|
||||||
|
//percent as u8, config.tank.tank_empty_percent
|
||||||
|
//);
|
||||||
|
Ok(true)
|
||||||
|
} else {
|
||||||
|
Ok(false)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn warn_level(&self, config: &TankConfig) -> Result<bool, TankError> {
|
||||||
|
match self {
|
||||||
|
TankState::TankSensorDisabled => Err(TankError::SensorDisabled),
|
||||||
|
TankState::TankSensorPresent(raw_value_mv) => {
|
||||||
|
let tank_fill_percent = raw_voltage_to_tank_fill_percent(raw_value_mv, config)?;
|
||||||
|
if tank_fill_percent < config.tank_warn_percent {
|
||||||
|
//TODO(judge) move logging to more sensible place
|
||||||
|
//println!(
|
||||||
|
//"Low water, current percent is {}, minimum warn level is {}",
|
||||||
|
//percent as u8, config.tank.tank_warn_percent
|
||||||
|
//);
|
||||||
|
// TODO(judge) move board fault setting
|
||||||
|
// board.general_fault(true);
|
||||||
|
Ok(true)
|
||||||
|
} else {
|
||||||
|
Ok(false)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize)]
|
#[derive(Serialize)]
|
||||||
@ -92,61 +136,11 @@ pub struct TankStateMQTT {
|
|||||||
pub fn determine_tank_state(
|
pub fn determine_tank_state(
|
||||||
board: &mut std::sync::MutexGuard<'_, PlantCtrlBoard<'_>>,
|
board: &mut std::sync::MutexGuard<'_, PlantCtrlBoard<'_>>,
|
||||||
config: &PlantControllerConfig,
|
config: &PlantControllerConfig,
|
||||||
) -> TankInfo {
|
) -> TankState {
|
||||||
if config.tank.tank_sensor_enabled {
|
if config.tank.tank_sensor_enabled {
|
||||||
let mut rv: TankInfo = TankInfo {
|
let raw_sensor_value_mv = board.tank_sensor_voltage();
|
||||||
..Default::default()
|
TankState::TankSensorPresent(raw_sensor_value_mv)
|
||||||
};
|
} else {
|
||||||
let success = board
|
TankState::TankSensorDisabled
|
||||||
.tank_sensor_percent()
|
|
||||||
.and_then(|raw| {
|
|
||||||
rv.raw = raw;
|
|
||||||
return map_range(
|
|
||||||
(
|
|
||||||
config.tank.tank_empty_percent as f32,
|
|
||||||
config.tank.tank_full_percent as f32,
|
|
||||||
),
|
|
||||||
raw as f32,
|
|
||||||
);
|
|
||||||
})
|
|
||||||
.and_then(|percent| {
|
|
||||||
rv.left_ml = ((percent * config.tank.tank_useable_ml as f32) / 100_f32) as u32;
|
|
||||||
println!(
|
|
||||||
"Tank sensor returned mv {} as {}% leaving {} ml useable",
|
|
||||||
rv.raw, percent as u8, rv.left_ml
|
|
||||||
);
|
|
||||||
if config.tank.tank_warn_percent > percent as u8 {
|
|
||||||
board.general_fault(true);
|
|
||||||
println!(
|
|
||||||
"Low water, current percent is {}, minimum warn level is {}",
|
|
||||||
percent as u8, config.tank.tank_warn_percent
|
|
||||||
);
|
|
||||||
rv.warn_level = true;
|
|
||||||
}
|
|
||||||
if config.tank.tank_empty_percent < percent as u8 {
|
|
||||||
println!(
|
|
||||||
"Enough water, current percent is {}, minimum empty level is {}",
|
|
||||||
percent as u8, config.tank.tank_empty_percent
|
|
||||||
);
|
|
||||||
rv.enough_water = true;
|
|
||||||
}
|
|
||||||
return Ok(());
|
|
||||||
});
|
|
||||||
match success {
|
|
||||||
Err(err) => {
|
|
||||||
println!("Could not determine tank value due to {}", err);
|
|
||||||
board.general_fault(true);
|
|
||||||
rv.sensor_error = true;
|
|
||||||
}
|
|
||||||
Ok(_) => {}
|
|
||||||
}
|
|
||||||
return rv;
|
|
||||||
}
|
}
|
||||||
return TankInfo {
|
|
||||||
warn_level: false,
|
|
||||||
enough_water: true,
|
|
||||||
left_ml: 1337,
|
|
||||||
sensor_error: false,
|
|
||||||
raw: 0,
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user