Hover!( Microchip MGC3130 ) library. Now, it is development version. http://www.hoverlabs.co/#hover https://www.switch-science.com/catalog/2124/

Dependents:   MjHover_Hello

Committer:
matsujirushi
Date:
Sun Feb 22 23:23:59 2015 +0000
Revision:
0:051e1e753af5
Child:
1:8e9c00c59101
Development version.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
matsujirushi 0:051e1e753af5 1 #ifndef MJ_HOVER_H
matsujirushi 0:051e1e753af5 2 #define MJ_HOVER_H
matsujirushi 0:051e1e753af5 3
matsujirushi 0:051e1e753af5 4 #include "mbed.h"
matsujirushi 0:051e1e753af5 5
matsujirushi 0:051e1e753af5 6 namespace matsujirushi {
matsujirushi 0:051e1e753af5 7
matsujirushi 0:051e1e753af5 8 class MjHover
matsujirushi 0:051e1e753af5 9 {
matsujirushi 0:051e1e753af5 10 public:
matsujirushi 0:051e1e753af5 11 MjHover(I2C* i2c, uint8_t address);
matsujirushi 0:051e1e753af5 12
matsujirushi 0:051e1e753af5 13 private:
matsujirushi 0:051e1e753af5 14 I2C *i2c;
matsujirushi 0:051e1e753af5 15 uint8_t address;
matsujirushi 0:051e1e753af5 16
matsujirushi 0:051e1e753af5 17 };
matsujirushi 0:051e1e753af5 18
matsujirushi 0:051e1e753af5 19 } // namespace matsujirushi
matsujirushi 0:051e1e753af5 20
matsujirushi 0:051e1e753af5 21 #endif