diff --git a/cpdctrl/led_control_device/base.py b/cpdctrl/led_control_device/base.py index a33f777..e63aae7 100644 --- a/cpdctrl/led_control_device/base.py +++ b/cpdctrl/led_control_device/base.py @@ -6,7 +6,15 @@ Created on Tue Jan 21 16:26:13 2025 """ class LedControlDevice(ABC): - @abstractmethod + @abstractmethod + def test_connection(self) -> None: + """ + Verify that the device is still properly connected. + If not, raises ConnectionError + """ + pass + + @abstractmethod def on(self): """ Set the led brightness to 100% diff --git a/cpdctrl/led_control_device/impl/test.py b/cpdctrl/led_control_device/impl/test.py index 8be6770..1892c79 100644 --- a/cpdctrl/led_control_device/impl/test.py +++ b/cpdctrl/led_control_device/impl/test.py @@ -4,6 +4,9 @@ class TestLedControlDevice(LedControlDevice): def __init__(self): super().__init__() + def test_connection(self) -> None: + pass + def on(self): pass diff --git a/cpdctrl/led_control_device/impl/thorlabs_dc2200.py b/cpdctrl/led_control_device/impl/thorlabs_dc2200.py index eae231c..b639dfa 100644 --- a/cpdctrl/led_control_device/impl/thorlabs_dc2200.py +++ b/cpdctrl/led_control_device/impl/thorlabs_dc2200.py @@ -36,6 +36,13 @@ class DC2200(LedControlDevice): self.off() self.instr.close() + def test_connection(self) -> None: + try: + res = self.instr.query('*IDN?') + except Exception as e: + log.error(f"Failed to query *IDN?:", e) + raise ConnectionError + def on(self): self.instr.write(f'SOURCE1:CBRightness:BRIGhtness 100') diff --git a/cpdctrl/led_control_device/impl/thorlabs_ledd1b.py b/cpdctrl/led_control_device/impl/thorlabs_ledd1b.py index a7a91f2..1561698 100644 --- a/cpdctrl/led_control_device/impl/thorlabs_ledd1b.py +++ b/cpdctrl/led_control_device/impl/thorlabs_ledd1b.py @@ -2,6 +2,10 @@ import serial from ..base import LedControlDevice +import logging +log = logging.getLogger(__name__) + +ARDUINO_SOFTWARE_VERSION_STRING = "Arduino Nano CPD 1" class LEDD1B(LedControlDevice): """ Control a Thorlabs LEDD1B LED driver using an Arduino Nano. @@ -12,7 +16,7 @@ class LEDD1B(LedControlDevice): """ def __init__(self, port="COM4"): self.arduino = serial.Serial(port=port, baudrate=9600, timeout=.1) - # self._check_arduino_software() + self._check_arduino_software() def __del__(self): self.off() @@ -25,9 +29,16 @@ class LEDD1B(LedControlDevice): """ self._write('i') lines = self.read() - if len(lines) < 1 or not lines[-1].startswith(bytes("Arduino Nano CPD 1", "utf-8")): - print(lines) - raise Exception("Arduino did not return the expected output - does it have the correct software loaded?") + if len(lines) < 1 or not lines[-1].startswith(bytes(ARDUINO_SOFTWARE_VERSION_STRING, "utf-8")): + log.error(f"Arduino did not return the expected output - does it have the correct software loaded?\nExpected: '{ARDUINO_SOFTWARE_VERSION_STRING}'\nReceived:{lines}") + raise ConnectionError("Arduino did not return the expected output - does it have the correct software loaded?") + + def test_connection(self) -> None: + try: + self._check_arduino_software() + except Exception as e: + log.error(f"Failed to query *IDN?:", e) + raise ConnectionError def _write(self, val): self.arduino.write(bytes(val, 'utf-8')) diff --git a/cpdctrl/voltage_measurement_device/base.py b/cpdctrl/voltage_measurement_device/base.py index d2a8cd8..7bfc73a 100644 --- a/cpdctrl/voltage_measurement_device/base.py +++ b/cpdctrl/voltage_measurement_device/base.py @@ -7,7 +7,14 @@ Created on Tue Jan 21 16:19:01 2025 @author: Matthias Quintern """ -class VoltageMeasurementDevice(ABC): +class VoltageMeasurementDevice(ABC): + @abstractmethod + def test_connection(self) -> None: + """ + Verify that the device is still properly connected. + If not, raises ConnectionError + """ + pass # RUN COMMANDS ON THE DEVICE @abstractmethod def run(self, code, verbose=False): diff --git a/cpdctrl/voltage_measurement_device/impl/keithley2700.py b/cpdctrl/voltage_measurement_device/impl/keithley2700.py index ec1a6c2..38c0614 100644 --- a/cpdctrl/voltage_measurement_device/impl/keithley2700.py +++ b/cpdctrl/voltage_measurement_device/impl/keithley2700.py @@ -7,11 +7,13 @@ from typing import Callable from ..base import VoltageMeasurementDevice from ...utility.visa import enumerate_devices +import logging +log = logging.getLogger(__name__) + class Keithley2700(VoltageMeasurementDevice): """ Wrapper class for the Keithley2700 SMU controlled via pyvisa """ - def __init__(self, instr, check_front_switch=True): self.instr = instr if check_front_switch: @@ -21,7 +23,8 @@ class Keithley2700(VoltageMeasurementDevice): def __del__(self): """Properly close the instrument connection""" self.instr.close() - + + def _check_front_input_selected(self): """ Make sure the front switch selecting the inputs selects the FRONT inputs @@ -39,8 +42,14 @@ class Keithley2700(VoltageMeasurementDevice): if switch != "1": raise Exception("The Keithley's INPUT switch must select the [F]ront inputs") return switch - - + + def test_connection(self) -> None: + try: + res = self.query("*IDN?") + except Exception as e: + log.error(f"Failed to query *IDN?:", e) + raise ConnectionError + def query(self, query): try: return self.instr.query(query).strip("\n") diff --git a/cpdctrl/voltage_measurement_device/impl/test.py b/cpdctrl/voltage_measurement_device/impl/test.py index 6ce01fd..c9dc4ed 100644 --- a/cpdctrl/voltage_measurement_device/impl/test.py +++ b/cpdctrl/voltage_measurement_device/impl/test.py @@ -10,6 +10,9 @@ class TestVoltageMeasurementDevice(VoltageMeasurementDevice): self.frequency = frequency self.t0 = now() + def test_connection(self) -> None: + pass + # RUN COMMANDS ON THE DEVICE def run(self, code, verbose=False): pass