mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
91 lines
2.2 KiB
C++
91 lines
2.2 KiB
C++
#pragma once
|
|
//
|
|
// FILE: MS5611.h
|
|
// AUTHOR: Rob Tillaart
|
|
// Erni - testing/fixes
|
|
// VERSION: 0.3.4
|
|
// PURPOSE: Arduino library for MS5611 temperature and pressure sensor
|
|
// URL: https://github.com/RobTillaart/MS5611
|
|
|
|
|
|
#include "Arduino.h"
|
|
#include "Wire.h"
|
|
|
|
|
|
#define MS5611_LIB_VERSION (F("0.3.4"))
|
|
|
|
|
|
#define MS5611_READ_OK 0
|
|
#define MS5611_ERROR_2 2 // low level I2C error
|
|
#define MS5611_NOT_READ -999
|
|
|
|
|
|
enum osr_t
|
|
{
|
|
OSR_ULTRA_HIGH = 12, // 10 millis
|
|
OSR_HIGH = 11, // 5 millis
|
|
OSR_STANDARD = 10, // 3 millis
|
|
OSR_LOW = 9, // 2 millis
|
|
OSR_ULTRA_LOW = 8 // 1 millis Default = backwards compatible
|
|
};
|
|
|
|
|
|
class MS5611
|
|
{
|
|
public:
|
|
explicit MS5611(uint8_t deviceAddress);
|
|
|
|
#if defined (ESP8266) || defined(ESP32)
|
|
bool begin(uint8_t sda, uint8_t scl, TwoWire *wire = &Wire);
|
|
#endif
|
|
bool begin(TwoWire *wire = &Wire);
|
|
bool isConnected();
|
|
|
|
// reset command + get constants
|
|
void reset();
|
|
|
|
// the actual reading of the sensor;
|
|
// returns MS5611_READ_OK upon success
|
|
int read(uint8_t bits);
|
|
inline int read() { return read( (uint8_t) _samplingRate); }; // uses the preset oversampling
|
|
|
|
// sets oversampling to a value between 8 and 12
|
|
void setOversampling(osr_t samplingRate);
|
|
|
|
// oversampling rate is in osr_t
|
|
osr_t getOversampling() const { return (osr_t) _samplingRate; };
|
|
|
|
// temperature is in ²C
|
|
float getTemperature() const { return _temperature * 0.01; };
|
|
|
|
// pressure is in mBar
|
|
float getPressure() const { return _pressure * 0.01; };
|
|
|
|
// to check for failure
|
|
int getLastResult() const { return _result; };
|
|
|
|
// last time in millis() that the sensor has been read.
|
|
uint32_t lastRead() { return _lastRead; };
|
|
|
|
|
|
private:
|
|
void convert(const uint8_t addr, uint8_t bits);
|
|
uint32_t readADC();
|
|
uint16_t readProm(uint8_t reg);
|
|
int command(const uint8_t command);
|
|
|
|
uint8_t _address;
|
|
uint8_t _samplingRate;
|
|
int32_t _temperature;
|
|
int32_t _pressure;
|
|
int _result;
|
|
float C[7];
|
|
uint32_t _lastRead;
|
|
|
|
TwoWire * _wire;
|
|
};
|
|
|
|
|
|
// -- END OF FILE --
|
|
|