mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
0c0a1b1dcc
this library abstracts out the way of getting an analog value. If the ADC library is being used then it calls the ADC Ch() method, otherwise it calls analogRead()
9 lines
168 B
C
9 lines
168 B
C
|
|
#ifndef __AP_ANALOG_SOURCE_H__
|
|
#define __AP_ANALOG_SOURCE_H__
|
|
|
|
#include "AP_AnalogSource_Arduino.h"
|
|
#include "AP_AnalogSource_ADC.h"
|
|
|
|
#endif // __AP_ANALOG_SOURCE_H__
|