WIP
This commit is contained in:
parent
a7946b93b9
commit
7e01dc21dd
18
src/BMX055.h
Normal file
18
src/BMX055.h
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
//
|
||||||
|
#ifndef __BMX055_H__
|
||||||
|
#define __BMX055_H__
|
||||||
|
|
||||||
|
#include <Arduino.h>
|
||||||
|
#include <Wire.h>
|
||||||
|
|
||||||
|
class BMX055 {
|
||||||
|
public:
|
||||||
|
BMX055();
|
||||||
|
~BMX055();
|
||||||
|
void begin(TwoWire &wirePort);
|
||||||
|
|
||||||
|
private:
|
||||||
|
TwoWire &_wire;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
@ -1 +0,0 @@
|
|||||||
//
|
|
Loading…
Reference in New Issue
Block a user