Added 4-lead multi calibration.

This commit is contained in:
2025-11-03 19:17:28 +01:00
parent 5d80fcdcd8
commit ce23d40b38
4 changed files with 37 additions and 7 deletions

View File

@@ -76,10 +76,11 @@ impl WorkbookClient {
pub async fn start_impedancemeter_multi(
&self,
lead_mode: BioImpedanceLeadMode,
points: MeasurementPointSet,
) -> Result<MultiImpedanceInitResult, WorkbookError<Infallible>> {
let response = self.client
.send_resp::<StartMultiImpedanceEndpoint>(&MultiImpedanceStartRequest { points })
.send_resp::<StartMultiImpedanceEndpoint>(&MultiImpedanceStartRequest { lead_mode, points })
.await?;
Ok(response)
}