mirror of https://github.com/ArduPilot/ardupilot
9 lines
132 B
C++
9 lines
132 B
C++
|
|
||
|
#include "wiring.h"
|
||
|
#include "AP_AnalogSource_Arduino.h"
|
||
|
|
||
|
int AP_AnalogSource_Arduino::read(void)
|
||
|
{
|
||
|
return analogRead(_pin);
|
||
|
}
|