Skip to content

Commit b1b2e34

Browse files
YakBizzarroWilliamHPNielsen
authored andcommitted
fix: Keithley 2000 set right default data format (#536)
1 parent 4c2389f commit b1b2e34

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

qcodes/instrument_drivers/tektronix/Keithley_2000.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,10 @@ def __init__(self, name, address, reset=False, **kwargs):
161161
if reset:
162162
self.reset()
163163

164+
# Set the data format to have only ascii data without units and channels
165+
self.write('FORM:DATA ASCII')
166+
self.write('FORM:ELEM READ')
167+
164168
self.connect_message()
165169

166170
def trigger(self):

0 commit comments

Comments
 (0)