Mercurial > templog
comparison rust/src/params.rs @ 621:8136a6b99866 rust
make it compile again
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 15 Apr 2017 23:39:23 +0800 |
parents | 2d65a9f0bed3 |
children | 2710649ab71e |
comparison
equal
deleted
inserted
replaced
620:8fda564cc46f | 621:8136a6b99866 |
---|---|
25 | 25 |
26 #[derive(Deserialize, Serialize, Debug, Clone)] | 26 #[derive(Deserialize, Serialize, Debug, Clone)] |
27 pub struct Params { | 27 pub struct Params { |
28 pub fridge_setpoint: f32, | 28 pub fridge_setpoint: f32, |
29 pub fridge_difference: f32, | 29 pub fridge_difference: f32, |
30 pub overshoot_delay: u32, | 30 pub overshoot_delay: u64, |
31 pub overshoot_factor: f32, | 31 pub overshoot_factor: f32, |
32 pub disabled: bool, | 32 pub disabled: bool, |
33 pub nowort: bool, | 33 pub nowort: bool, |
34 pub fridge_range_lower: f32, | 34 pub fridge_range_lower: f32, |
35 pub fridge_range_upper: f32, | 35 pub fridge_range_upper: f32, |