This page was generated from docs/examples/driver_examples/Qcodes example with Oxford Triton.ipynb. Interactive online version: Binder badge.

QCoDeS Example with Oxford Triton

[1]:
%matplotlib nbagg


[5]:
from qcodes.instrument_drivers.oxford import OxfordTriton

triton = OxfordTriton(name = 'Triton 1', address='127.0.0.1', port=33576, tmpfile='Triton1_thermometry.reg')
# triton._get_temp_channels('thermometry.reg')
# print(triton.chan_alias)

print(triton.time.get())
print(triton.T5.get())
print(triton.MC.get())
# for name,param in triton.parameters.items():
#     print(name,param.get())
print(triton.action.get())
print(triton.status.get())
# triton.close()
13:21:17
23.3481
23.3481
Idle
OK
[8]:
triton.get_idn()