added examples

This commit is contained in:
Erik Frojdh
2020-08-20 12:22:49 +02:00
parent 8ef6f32be6
commit 1f811dfabd
2 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from slsdet import Detector, Eiger, dacIndex
#Using the general detector class and calling with an index
d = Detector()
fpga_temp = d.getTemperature(dacIndex.TEMPERATURE_FPGA)
print(f'fpga_temp: {fpga_temp}\n')
#Using the specialized detector class
e = Eiger()
print("All temperatures for Eiger\n")
print(e.temp)