Skip to content

Commit

Permalink
Fixed bug - readout of HP 83712B enable state
Browse files Browse the repository at this point in the history
  • Loading branch information
jclederman committed Nov 12, 2024
1 parent 8b67281 commit 4d8fab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightlab/equipment/lab_instruments/HP_83712B_CWG.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def reset(self):
self.write('*RST')

def enable(self, newState=None):
trueWords = [True, 1, '1', 'ON']
trueWords = [True, 1, '1', 'ON', "+1"]
if newState is not None:
if newState:
self.write(f"OUTP ON")
Expand Down

0 comments on commit 4d8fab9

Please sign in to comment.