Files
sf-op/script/Tools/TestBsCamera.py
gobbo_a 8beeb7dbc7
2023-08-17 15:16:51 +02:00

16 lines
401 B
Python

print "Connecting to camera: " + str(CAMERA)
CAMERA_URL = caget(CAMERA + ":BSREADCONFIG").replace("tcp://daq", "tcp://")
print "Url: " + str(CAMERA_URL)
st1 = Stream("st1", CAMERA_URL, SocketType.PULL)
st1.initialize()
st1.start()
st1.waitCacheChange(3000)
try:
r=bscan (st1, records=10, timeout =10.0, save=False, enabled_plots=[st1,])
v= st1.getValues()
finally:
st1.close()