Skip to content

Commit

Permalink
fix: Keithley 2000 set right default data format (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
YakBizzarro authored and WilliamHPNielsen committed Apr 7, 2017
1 parent 4c2389f commit b1b2e34
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions qcodes/instrument_drivers/tektronix/Keithley_2000.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@ def __init__(self, name, address, reset=False, **kwargs):
if reset:
self.reset()

# Set the data format to have only ascii data without units and channels
self.write('FORM:DATA ASCII')
self.write('FORM:ELEM READ')

self.connect_message()

def trigger(self):
Expand Down

0 comments on commit b1b2e34

Please sign in to comment.