Skip to content

Commit

Permalink
Merge pull request #93 from numat/fix-vac-sp
Browse files Browse the repository at this point in the history
🪲 fix vacuum conversion
  • Loading branch information
JavanW-W authored Jul 8, 2024
2 parents 13120bb + 124a7b2 commit 0cbe3d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ika/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ async def set(self, setpoint: float):
Unlike other commands, the vacuum echoes back, so use query().
"""
setpoint_mbar = str(int(setpoint))
setpoint_mbar = str(int(setpoint * 1.333))
await self.query(self.SET_PRESSURE + setpoint_mbar)

async def set_mode(self, mode: VacuumProtocol.Mode):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="ika-control",
version="0.5.0",
version="0.6.0",
description="Python driver for IKA instruments.",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 0cbe3d1

Please sign in to comment.