This commit is contained in:
Pavel Brychta 2018-10-02 18:06:37 +02:00
parent a7946b93b9
commit 7e01dc21dd
2 changed files with 18 additions and 1 deletions

18
src/BMX055.h Normal file
View 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

View File

@ -1 +0,0 @@
//