Turn off LED on end
This commit is contained in:
parent
f858dd6916
commit
3b7a9ebc16
@ -31,6 +31,11 @@ class DC2200(LedControlDevice):
|
|||||||
error = self.instr.query('SYSTem:ERRor?')
|
error = self.instr.query('SYSTem:ERRor?')
|
||||||
if error.startswith('+0'): break
|
if error.startswith('+0'): break
|
||||||
log.error(f"DC2200 device error during initialization: {error}")
|
log.error(f"DC2200 device error during initialization: {error}")
|
||||||
|
|
||||||
|
def __del__(self):
|
||||||
|
self.off()
|
||||||
|
self.instr.close()
|
||||||
|
|
||||||
def on(self):
|
def on(self):
|
||||||
self.instr.write(f'SOURCE1:CBRightness:BRIGhtness 100')
|
self.instr.write(f'SOURCE1:CBRightness:BRIGhtness 100')
|
||||||
|
|
||||||
|
@ -15,6 +15,7 @@ class LEDD1B(LedControlDevice):
|
|||||||
# self._check_arduino_software()
|
# self._check_arduino_software()
|
||||||
|
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
|
self.off()
|
||||||
self.arduino.close()
|
self.arduino.close()
|
||||||
|
|
||||||
def _check_arduino_software(self):
|
def _check_arduino_software(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user