Repo of no-std crates for my personal embedded projects

Fix measure_async method signature

Changed files
+1 -2
sachy-shtc3
src
+1 -2
sachy-shtc3/src/lib.rs
···
/// This is an async function call.
pub async fn measure_async(
&mut self,
-
mode: PowerMode,
delay: &mut impl DelayNs,
) -> Result<Measurement, Error<I2C::Error>> {
self.send_command_async(Command::Measure {
-
power_mode: mode,
+
power_mode: self.mode,
order: MeasurementOrder::TemperatureFirst,
})
.await?;