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.
18 lines
323 B
18 lines
323 B
13 years ago
|
|
||
|
#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__
|