I am trying to understand how to use this software with my qx1. Example work as expected, but I am trying to script touch focus and take picture. My attempt below does not work, can you please help?
if 'setTouchAFPosition' in (mode['result'])[0]:
print camera.setTouchAFPosition([{'touchCoordinates': ["30.0,30.0"]}])
time.sleep(5)
if 'actTakePicture' in (mode['result'])[0]:
print camera.actTakePicture()
time.sleep(5)
Hi,
I am trying to understand how to use this software with my qx1. Example work as expected, but I am trying to script touch focus and take picture. My attempt below does not work, can you please help?
if 'setTouchAFPosition' in (mode['result'])[0]: print camera.setTouchAFPosition([{'touchCoordinates': ["30.0,30.0"]}]) time.sleep(5) if 'actTakePicture' in (mode['result'])[0]: print camera.actTakePicture() time.sleep(5)