mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-03 22:48:28 -04:00
BattMon: minor param description additions
This commit is contained in:
parent
45e0e48e54
commit
d09faa0015
@ -20,6 +20,7 @@ const AP_Param::GroupInfo AP_Camera::var_info[] PROGMEM = {
|
||||
// @Param: DURATION
|
||||
// @DisplayName: Duration that shutter is held open
|
||||
// @Description: How long the shutter will be held open in 10ths of a second (i.e. enter 10 for 1second, 50 for 5seconds)
|
||||
// @Units: seconds
|
||||
// @Range: 0 50
|
||||
// @User: Standard
|
||||
AP_GROUPINFO("DURATION", 1, AP_Camera, _trigger_duration, AP_CAMERA_TRIGGER_DEFAULT_DURATION),
|
||||
@ -27,6 +28,7 @@ const AP_Param::GroupInfo AP_Camera::var_info[] PROGMEM = {
|
||||
// @Param: SERVO_ON
|
||||
// @DisplayName: Servo ON PWM value
|
||||
// @Description: PWM value to move servo to when shutter is activated
|
||||
// @Units: pwm
|
||||
// @Range: 1000 2000
|
||||
// @User: Standard
|
||||
AP_GROUPINFO("SERVO_ON", 2, AP_Camera, _servo_on_pwm, AP_CAMERA_SERVO_ON_PWM),
|
||||
@ -34,6 +36,7 @@ const AP_Param::GroupInfo AP_Camera::var_info[] PROGMEM = {
|
||||
// @Param: SERVO_OFF
|
||||
// @DisplayName: Servo OFF PWM value
|
||||
// @Description: PWM value to move servo to when shutter is deactivated
|
||||
// @Units: pwm
|
||||
// @Range: 1000 2000
|
||||
// @User: Standard
|
||||
AP_GROUPINFO("SERVO_OFF", 3, AP_Camera, _servo_off_pwm, AP_CAMERA_SERVO_OFF_PWM),
|
||||
@ -42,6 +45,7 @@ const AP_Param::GroupInfo AP_Camera::var_info[] PROGMEM = {
|
||||
// @DisplayName: Camera trigger distance
|
||||
// @Description: Distance in meters between camera triggers. If this value is non-zero then the camera will trigger whenever the GPS position changes by this number of meters regardless of what mode the APM is in. Note that this parameter can also be set in an auto mission using the DO_SET_CAM_TRIGG_DIST command, allowing you to enable/disable the triggering of the camera during the flight.
|
||||
// @User: Standard
|
||||
// @Units: meters
|
||||
// @Range: 0 1000
|
||||
AP_GROUPINFO("TRIGG_DIST", 4, AP_Camera, _trigg_dist, 0),
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user