You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
my requirement is to control the zoom functionality based on certain distance the camera is from the object. i will use raspberry pi with this PTZ module.
what is the Focus , Zoom , Motor x and Motor Y value mentioned in the example?
Zoom = 13000 what this measurement unit.
Hi All,
my requirement is to control the zoom functionality based on certain distance the camera is from the object. i will use raspberry pi with this PTZ module.
what is the Focus , Zoom , Motor x and Motor Y value mentioned in the example?
Zoom = 13000 what this measurement unit.
The below code i found in Focuser.py .
`opts = {
OPT_FOCUS : {
"REG_ADDR" : 0x01,
"MIN_VALUE" : 0,
"MAX_VALUE": 18000,
"RESET_ADDR": 0x01 + 0x0A,
},
OPT_ZOOM : {
"REG_ADDR" : 0x00,
"MIN_VALUE" : 5000,
"MAX_VALUE": 18000,
"RESET_ADDR": 0x00 + 0x0A, },
OPT_MOTOR_X : {
"REG_ADDR" : 0x05,
"MIN_VALUE" : 0,
"MAX_VALUE": 180,
"RESET_ADDR": None,
},
OPT_MOTOR_Y : {
"REG_ADDR" : 0x06,
"MIN_VALUE" : 0,
"MAX_VALUE": 180,
"RESET_ADDR": None,
`
how to do this, any suggestion?
Thank you
The text was updated successfully, but these errors were encountered: