We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5091f8f + eb333c4 commit 7da102bCopy full SHA for 7da102b
docs/changes/newsfragments/4779.improved
@@ -0,0 +1 @@
1
+Keithley calibration: adjust calibration date before saving new calibration
qcodes/calibrations/keithley.py
@@ -23,7 +23,9 @@ def setup_dmm(dmm: Instrument) -> None:
23
24
25
def save_calibration(smu: Keithley_2600) -> None:
26
+ calibration_date = int(time.time())
27
for smu_channel in smu.channels:
28
+ smu.write(f"{smu_channel.channel}.cal.adjustdate = {calibration_date}")
29
smu.write(f"{smu_channel.channel}.cal.save()")
30
31
0 commit comments