24 lines
354 B
C
Raw Normal View History

2014-07-02 17:49:28 -04:00
#ifndef hh12_h
#define hh12_h
#define HH12_DELAY 100 // microseconds
//#define OPTION_HH12_10_BIT_READINGS
2014-07-02 17:49:28 -04:00
2014-07-02 17:49:28 -04:00
class hh12 {
public:
hh12();
void initialize(int _hh12_clock_pin, int _hh12_cs_pin, int _hh12_data_pin);
float heading();
private:
int hh12_clock_pin;
int hh12_cs_pin;
int hh12_data_pin;
};
#endif //hh12_h