retreiving data from a camera control page
Posted: Sun Jun 23, 2024 6:49 pm
I'm writing a perl5 control module for an SV3C ptz camera. I created a new control type named Sv3c:
I can retrieve the stored value for step with:
The zmc.log shows:
I've tried min, range, irisMin, etc. - no joy.
I can retrieve the stored value for step with:
Code: Select all
my $step = $self->getParam($params, 'step');
my $min = $self->getParam($params, 'min');
print(">>> Iris brightness " step: $step, min: $min <<<\n");
Code: Select all
Iris brightness step: 10, min: <<<
- Is it possible to retrieve all settings from this camera's control settings?
- or only a subset?
- Where would this be defined?