github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/ardupilotmega/message_ap_adc.go (about) 1 //autogenerated:yes 2 //nolint:revive,misspell,govet,lll 3 package ardupilotmega 4 5 // Raw ADC output. 6 type MessageApAdc struct { 7 // ADC output 1. 8 Adc1 uint16 9 // ADC output 2. 10 Adc2 uint16 11 // ADC output 3. 12 Adc3 uint16 13 // ADC output 4. 14 Adc4 uint16 15 // ADC output 5. 16 Adc5 uint16 17 // ADC output 6. 18 Adc6 uint16 19 } 20 21 // GetID implements the message.Message interface. 22 func (*MessageApAdc) GetID() uint32 { 23 return 153 24 }