Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
MjHover.h@0:051e1e753af5, 2015-02-22 (annotated)
- 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?
User | Revision | Line number | New 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 |