diff --git a/py_instrument_control_lib/devices/KST33500.py b/py_instrument_control_lib/devices/KST33500.py index f70f919..ad40f76 100644 --- a/py_instrument_control_lib/devices/KST33500.py +++ b/py_instrument_control_lib/devices/KST33500.py @@ -92,4 +92,4 @@ def toggle_channel(self, channel_idx: ChannelIndex, enable: bool, check_errors: def set_channel_level(self, unit: ChannelUnit, channel_idx: ChannelIndex, level: float, check_errors: bool = False) \ -> None: channel_idx.check(2) - self.execute(f'VOLTage:OFFSet {level * 2}') # TODO: Find proper way to set voltage level + self.execute(f'VOLTage:OFFSet {level / 2}') # TODO: Find proper way to set voltage level