Source code for lightlab.equipment.lab_instruments.Arduino_Instrument

from . import VISAInstrumentDriver
from lightlab.laboratory.instruments import ArduinoInstrument


[docs]class Arduino_Instrument(VISAInstrumentDriver): ''' Read/write interface for an arduino. Could make use of TCPIP or maybe USB Usage: TODO Todo: To be implemented. ''' instrument_category = ArduinoInstrument def __init__(self, name='Arduino', **kwargs): super().__init__(name=name, **kwargs)
[docs] def write(self, writeStr): pass
[docs] def query(self, queryStr, withTimeout=None): return 'hey'