1
0
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:
Cristian Maglie
2014-01-01 23:45:39 +01:00
parent a80b2b1d53
commit 03a7cf3212
48 changed files with 2 additions and 4 deletions

View 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