Skip to content

Commit

Permalink
Update mocked placeholder values
Browse files Browse the repository at this point in the history
  • Loading branch information
taesungh committed Jun 1, 2024
1 parent 5a60ab6 commit 58f1813
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pod-operation/src/components/lim_temperature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ impl LimTemperature {

#[cfg(not(feature = "ads1015"))]
pub fn read_lim_temps(&mut self) -> [f32; 4] {
[0.0, 0.0, 0.0, 0.0].map(voltage_to_temp)
[0.45, 0.45, 0.45, 0.45].map(voltage_to_temp)
}
}
2 changes: 1 addition & 1 deletion pod-operation/src/components/pressure_transducer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ impl PressureTransducer {
#[cfg(feature = "ina219")]
let current = self.read_current();
#[cfg(not(feature = "ina219"))]
let current = 4.0;
let current = 11.5; // demo value

let Reference {
pressure_lo,
Expand Down

0 comments on commit 58f1813

Please sign in to comment.