mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-12-26 06:01:18 +01:00
added examples
This commit is contained in:
13
python/examples/reading_temperature.py
Normal file
13
python/examples/reading_temperature.py
Normal 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)
|
||||
Reference in New Issue
Block a user