mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-20 21:01:25 +03:00
Robot Control library to format 1.5 rev.2
This commit is contained in:
24
libraries/Robot_Control/src/Compass.h
Normal file
24
libraries/Robot_Control/src/Compass.h
Normal file
@ -0,0 +1,24 @@
|
||||
#ifndef Compass_h
|
||||
#define Compass_h
|
||||
|
||||
#if ARDUINO >= 100
|
||||
#include "Arduino.h"
|
||||
#else
|
||||
#include "WProgram.h"
|
||||
#endif
|
||||
|
||||
//0x21==0x42>>1, from bildr's code
|
||||
#define HMC6352SlaveAddress 0x21
|
||||
#define HMC6352ReadAddress 0x41
|
||||
|
||||
class Compass{
|
||||
public:
|
||||
void begin();
|
||||
float getReading();
|
||||
private:
|
||||
void _beginTransmission();
|
||||
void _endTransmission();
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user