added lots of .py

This commit is contained in:
gac-alvra
2023-10-23 18:49:28 +02:00
parent 56327ce073
commit fa2caeff3e
24 changed files with 1771 additions and 0 deletions

13
dioderata/mod_mod.py Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python
import epics
import time
# config
modPV = epics.PV('SIN-TIMAST-TMA:Evt-23-Off-SP')
while True:
time.sleep(5)
modPV.put(0)
time.sleep(5)
modPV.put(1)