Skip to content

Commit a4a9480

Browse files
committed
Merge branch 'main' of https://github.com/sandialabs/pyscan into fix_keysight_spelling
2 parents 8a03910 + 52c343f commit a4a9480

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+60
-5
lines changed

pyscan/drivers/actonsp2300.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,13 @@ class ActonSP2300(InstrumentDriver):
3535
'''
3636

3737
def __init__(self, com, baud=9600, timeout=5):
38+
3839
self.ser = serial.Serial(com, baud, timeout=timeout)
3940
time.sleep(1)
4041

4142
self.debug = False
43+
self._version = "0.1.0"
44+
4245
self.initialize_properties()
4346

4447
def flush(self):

pyscan/drivers/agilent33500.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def __init__(self, instrument, channel):
6464
self.channel = channel
6565

6666
self.gain = 1
67+
self._version = "0.1.0"
6768

6869
self.debug = False
6970
self.initialize_properties()

pyscan/drivers/agilent34410.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ def __init__(self, instrument):
2323
super().__init__(instrument)
2424

2525
self.debug = False
26+
self._version = "0.1.0"
27+
2628
# self.initialize_properties()
2729

2830
def measure_voltage_DC(self):

pyscan/drivers/agilent8267d.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ def __init__(self, instrument):
3131
super().__init__(instrument)
3232

3333
self.debug = False
34+
self._version = "0.1.0"
35+
3436
self.initialize_properties()
3537

3638
def initialize_properties(self):

pyscan/drivers/agilent8275n.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ def __init__(self, instrument):
3030
self.gain = 1
3131

3232
self.debug = False
33+
self._version = "0.1.0"
34+
3335
self.initialize_properties()
3436

3537
def initialize_properties(self):

pyscan/drivers/agilentdso900series.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ def __init__(self, instrument):
7575
super().__init__(instrument)
7676

7777
self.debug = False
78+
self._version = "0.1.0"
7879
self.initialize_properties()
7980

8081
def initialize_properties(self):

pyscan/drivers/americanmagnetics430.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ def __init__(self, instrument):
3131
instrument.read_termination = '\r\n'
3232
instrument.write_termination = '\r'
3333

34+
self._version = "0.1.0"
35+
3436
# visa object
3537
self.instrument = instrument
3638

pyscan/drivers/attocubeANC350.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ def __init__(self, instrument):
99

1010
super().__init__(instrument)
1111

12+
self._version = "0.1.0"
13+
1214
self.inst = ANC350()
1315
# self.debug = False
1416
# self.initialize_properties()

pyscan/drivers/bkprecision9130b.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ def __init__(self, instrument):
3232
super().__init__(instrument)
3333

3434
self.debug = False
35+
self._version = "0.1.0"
36+
3537
self.initialize_properties()
3638

3739
def initialize_properties(self):

pyscan/drivers/blueforslog.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ class BlueForsLog(object):
101101
def __init__(self, path, date='now'):
102102
self.path = Path(path)
103103
self.date = date
104+
self._version = "0.1.0"
104105

105106
def get_path(self, file):
106107

0 commit comments

Comments
 (0)