mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 06:58:27 -04:00
12 lines
165 B
C++
12 lines
165 B
C++
|
|
#ifndef __ANALOG_SOURCE_H__
|
|
#define __ANALOG_SOURCE_H__
|
|
|
|
class AP_AnalogSource
|
|
{
|
|
public:
|
|
virtual float read(void) = 0;
|
|
};
|
|
|
|
#endif // __ANALOG_SOURCE_H__
|