temperature reading for eiger

This commit is contained in:
Erik Frojdh
2020-08-20 11:46:35 +02:00
parent 9b26f5a6c8
commit a7cc2b38d8
7 changed files with 114 additions and 226 deletions

View File

@ -0,0 +1,8 @@
from slsdet import Eiger
d = Eiger()
threshold = range(0, 2000, 200)
for th in threshold:
print(f'{th=}')
d.vthreshold = th
d.acquire()