Inluded frequency selector at start.

This commit is contained in:
2025-08-18 14:50:50 +02:00
parent dba4d652f3
commit 9d6625e8fa
6 changed files with 33 additions and 22 deletions

View File

@@ -63,7 +63,7 @@ impl WorkbookClient {
pub async fn start_impedancemeter(
&self,
frequency: f32,
frequency: u32,
) -> Result<(), WorkbookError<Infallible>> {
self.client
.send_resp::<StartImpedanceEndpoint>(&StartImpedance { update_frequency: 60, sinus_frequency: frequency })
@@ -78,4 +78,4 @@ impl WorkbookClient {
.await?;
Ok(res)
}
}
}