Add connection checks

This commit is contained in:
CPD 2025-03-19 17:01:33 +01:00
parent 1fd09bee82
commit 6a453da9bb
7 changed files with 58 additions and 10 deletions
cpdctrl

@ -6,7 +6,15 @@ Created on Tue Jan 21 16:26:13 2025
""" """
class LedControlDevice(ABC): 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): def on(self):
""" """
Set the led brightness to 100% Set the led brightness to 100%

@ -4,6 +4,9 @@ class TestLedControlDevice(LedControlDevice):
def __init__(self): def __init__(self):
super().__init__() super().__init__()
def test_connection(self) -> None:
pass
def on(self): def on(self):
pass pass

@ -36,6 +36,13 @@ class DC2200(LedControlDevice):
self.off() self.off()
self.instr.close() 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): def on(self):
self.instr.write(f'SOURCE1:CBRightness:BRIGhtness 100') self.instr.write(f'SOURCE1:CBRightness:BRIGhtness 100')

@ -2,6 +2,10 @@ import serial
from ..base import LedControlDevice from ..base import LedControlDevice
import logging
log = logging.getLogger(__name__)
ARDUINO_SOFTWARE_VERSION_STRING = "Arduino Nano CPD 1"
class LEDD1B(LedControlDevice): class LEDD1B(LedControlDevice):
""" """
Control a Thorlabs LEDD1B LED driver using an Arduino Nano. Control a Thorlabs LEDD1B LED driver using an Arduino Nano.
@ -12,7 +16,7 @@ class LEDD1B(LedControlDevice):
""" """
def __init__(self, port="COM4"): def __init__(self, port="COM4"):
self.arduino = serial.Serial(port=port, baudrate=9600, timeout=.1) self.arduino = serial.Serial(port=port, baudrate=9600, timeout=.1)
# self._check_arduino_software() self._check_arduino_software()
def __del__(self): def __del__(self):
self.off() self.off()
@ -25,9 +29,16 @@ class LEDD1B(LedControlDevice):
""" """
self._write('i') self._write('i')
lines = self.read() lines = self.read()
if len(lines) < 1 or not lines[-1].startswith(bytes("Arduino Nano CPD 1", "utf-8")): if len(lines) < 1 or not lines[-1].startswith(bytes(ARDUINO_SOFTWARE_VERSION_STRING, "utf-8")):
print(lines) 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 Exception("Arduino did not return the expected output - does it have the correct software loaded?") 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): def _write(self, val):
self.arduino.write(bytes(val, 'utf-8')) self.arduino.write(bytes(val, 'utf-8'))

@ -7,7 +7,14 @@ Created on Tue Jan 21 16:19:01 2025
@author: Matthias Quintern @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 # RUN COMMANDS ON THE DEVICE
@abstractmethod @abstractmethod
def run(self, code, verbose=False): def run(self, code, verbose=False):

@ -7,11 +7,13 @@ from typing import Callable
from ..base import VoltageMeasurementDevice from ..base import VoltageMeasurementDevice
from ...utility.visa import enumerate_devices from ...utility.visa import enumerate_devices
import logging
log = logging.getLogger(__name__)
class Keithley2700(VoltageMeasurementDevice): class Keithley2700(VoltageMeasurementDevice):
""" """
Wrapper class for the Keithley2700 SMU controlled via pyvisa Wrapper class for the Keithley2700 SMU controlled via pyvisa
""" """
def __init__(self, instr, check_front_switch=True): def __init__(self, instr, check_front_switch=True):
self.instr = instr self.instr = instr
if check_front_switch: if check_front_switch:
@ -21,7 +23,8 @@ class Keithley2700(VoltageMeasurementDevice):
def __del__(self): def __del__(self):
"""Properly close the instrument connection""" """Properly close the instrument connection"""
self.instr.close() self.instr.close()
def _check_front_input_selected(self): def _check_front_input_selected(self):
""" """
Make sure the front switch selecting the inputs selects the FRONT inputs Make sure the front switch selecting the inputs selects the FRONT inputs
@ -39,8 +42,14 @@ class Keithley2700(VoltageMeasurementDevice):
if switch != "1": if switch != "1":
raise Exception("The Keithley's INPUT switch must select the [F]ront inputs") raise Exception("The Keithley's INPUT switch must select the [F]ront inputs")
return switch 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): def query(self, query):
try: try:
return self.instr.query(query).strip("\n") return self.instr.query(query).strip("\n")

@ -10,6 +10,9 @@ class TestVoltageMeasurementDevice(VoltageMeasurementDevice):
self.frequency = frequency self.frequency = frequency
self.t0 = now() self.t0 = now()
def test_connection(self) -> None:
pass
# RUN COMMANDS ON THE DEVICE # RUN COMMANDS ON THE DEVICE
def run(self, code, verbose=False): def run(self, code, verbose=False):
pass pass