WIP: try just waiting 0.5s rather than using an Event

This commit is contained in:
Richard Bowman 2024-02-01 17:37:44 +00:00
parent 4a18ef729a
commit 24a1d9d020

View file

@ -634,7 +634,8 @@ class SmartScanThing(Thing):
#} #}
) )
capture_thread.start() capture_thread.start()
acquired.wait() # wait until the image is acquired #acquired.wait() # wait until the image is acquired
time.sleep(0.5)
positions.append(loc[:2]) positions.append(loc[:2])
names.append(name) names.append(name)