mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-20 02:40:03 +02:00
10 lines
255 B
Python
10 lines
255 B
Python
# SPDX-License-Identifier: LGPL-3.0-or-other
|
|
# Copyright (C) 2021 Contributors to the SLS Detector Package
|
|
from slsdet import Eiger
|
|
|
|
d = Eiger()
|
|
threshold = range(0, 2000, 200)
|
|
for th in threshold:
|
|
print(f'{th=}')
|
|
d.vthreshold = th
|
|
d.acquire() |