We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a34a9 commit 1692be0Copy full SHA for 1692be0
pylabrobot/plate_reading/biotek_backend.py
@@ -403,6 +403,13 @@ async def get_current_temperature(self) -> float:
403
assert resp is not None
404
return int(resp[1:-1]) / 100000
405
406
+ async def set_temperature(self, temperature: float):
407
+ """Set temperature in degrees Celsius."""
408
+ return await self.send_command("g", f"{int(temperature * 1000):05}")
409
+
410
+ async def stop_heating_or_cooling(self):
411
+ return await self.send_command("g", "00000")
412
413
def _parse_body(self, body: bytes) -> List[List[float]]:
414
start_index = body.index(b"01,01")
415
end_index = body.rindex(b"\r\n")
0 commit comments