You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
323 B
17 lines
323 B
|
|
#ifndef __AP_ANALOG_SOURCE_ARDUINO_H__ |
|
#define __AP_ANALOG_SOURCE_ARDUINO_H__ |
|
|
|
#include "AnalogSource.h" |
|
|
|
class AP_AnalogSource_Arduino : public AP_AnalogSource |
|
{ |
|
public: |
|
AP_AnalogSource_Arduino( int pin ) : _pin(pin) {} |
|
int read(void); |
|
|
|
private: |
|
int _pin; |
|
}; |
|
|
|
#endif // __AP_ANALOG_SOURCE_ARDUINO_H__
|
|
|