import time from slave.transport import Visa from slave.srs import SR830 lockin = SR830(Visa('GPIB::08')) # configure the lockin amplifier lockin.reserve = 'high' lockin.time_constant = 3 # take 60 measurements and print the result for i in range(60): print lockin.x time.sleep(...