So I want to add some commands to my streamdeck to control my camera from there. I have v4l2-ctl to control the camera, and I can set camera control values to a specific number to make the camera tilt, pan, zoom to those values. What I want to do is have up/down left/right and zoom in/out buttons on my streamdeck. I can't figure out how to make the command add/subtract from the current value. All I can figure so far is how to set it to a value.

and the command I'm using to change a value is

to program less buttons to move the camera, I want it to be --set-ctrl=tilt_absolute=tilt_absolute+1000 obviously that doesn't work though. I want to add a value to the current value rather than set it to a value.
v4l2-ctl man doesn't have any answers for me, could it just be a limit of the application or is there any other ways I can try to type out that command?
Now I can use --get-ctrl=tilt_absolute to get the value and perhaps set it to a variable and then make the --set-ctrl=tilt_absolute= ii+50 or whatever I'm sure but then I'd have to learn programming again and I've only dabbed in a little python many years ago. I feel like that would be a lot of work if tilt_absolute is already a value and I should be able to do math with the --set-ctrl command

and the command I'm using to change a value is
to program less buttons to move the camera, I want it to be --set-ctrl=tilt_absolute=tilt_absolute+1000 obviously that doesn't work though. I want to add a value to the current value rather than set it to a value.
v4l2-ctl man doesn't have any answers for me, could it just be a limit of the application or is there any other ways I can try to type out that command?
Now I can use --get-ctrl=tilt_absolute to get the value and perhaps set it to a variable and then make the --set-ctrl=tilt_absolute= ii+50 or whatever I'm sure but then I'd have to learn programming again and I've only dabbed in a little python many years ago. I feel like that would be a lot of work if tilt_absolute is already a value and I should be able to do math with the --set-ctrl command
