Disclaimer: I am not related to the cuvacode team in any way, so I can’t guarantee this will do any difference, just something that has worked in my experience with other software.
“”"
{
“name”: “Pause timer test”,
“description”: “”,
“ui”: [ {
“name”: “time_interval”,
“label”: “Time between photos”,
“type”: “time”,
“ui”: “time”,
“value”: “00:00:03”,
“description”: “Amount of time between each photo”
} ]
}
“”"
import time
import smartshooter
ctx = smartshooter.Context()
#store original properties
#change properties
ctx.shoot()
ctx.wait(int(time_interval))
#change properties
ctx.shoot()
ctx.wait(int(time_interval))
#and so on
#restore original properties