This commit is contained in:
2023-05-01 11:28:04 +02:00
parent 3a83f3cf34
commit abe3bcb19c
265 changed files with 28663 additions and 1295 deletions

View File

@@ -0,0 +1,11 @@
add_device(ChannelDouble("c0", "TESTIOC:TESTSINUS:SinCalc"), True)
c0.monitored=True
show_panel(c0)
for i in range(1000000):
c=ChannelDouble("channel", "TESTIOC:TESTSINUS:SinCalc")
c.initialize()
print i, c.read()
c.close()
time.sleep(0.001)