WIP
This commit is contained in:
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 @@
|
|||||||
//
|
|
Reference in New Issue
Block a user