github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/pythonarraytest/enum_camera_mode.go (about) 1 //autogenerated:yes 2 //nolint:revive,misspell,govet,lll,dupl,gocritic 3 package pythonarraytest 4 5 import ( 6 "github.com/bluenviron/gomavlib/v2/pkg/dialects/common" 7 ) 8 9 // Camera Modes. 10 type CAMERA_MODE = common.CAMERA_MODE 11 12 const ( 13 // Camera is in image/photo capture mode. 14 CAMERA_MODE_IMAGE CAMERA_MODE = common.CAMERA_MODE_IMAGE 15 // Camera is in video capture mode. 16 CAMERA_MODE_VIDEO CAMERA_MODE = common.CAMERA_MODE_VIDEO 17 // Camera is in image survey capture mode. It allows for camera controller to do specific settings for surveys. 18 CAMERA_MODE_IMAGE_SURVEY CAMERA_MODE = common.CAMERA_MODE_IMAGE_SURVEY 19 )