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.
|
#ifndef AP_RC_h |
|
#define AP_RC_h |
|
|
|
#include <inttypes.h> |
|
|
|
class AP_RC |
|
{ |
|
private: |
|
public: |
|
AP_RC(); |
|
void init(); |
|
void output_ch_pwm(uint8_t ch, uint16_t pwm); |
|
uint16_t input_ch(uint8_t ch); |
|
}; |
|
|
|
#endif
|
|
|