GY-63_MS5611/libraries/Max44009/max44009.cpp

238 lines
5.4 KiB
C++
Raw Normal View History

2016-12-17 14:58:29 -05:00
//
// FILE: Max44009.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.4.0
2016-12-17 14:58:29 -05:00
// PURPOSE: library for MAX44009 lux sensor Arduino
// URL: https://github.com/RobTillaart/Arduino/tree/master/libraries
2016-12-17 14:58:29 -05:00
//
// Released to the public domain
//
// 0.4.0 - 2020-01-30 remove automatic mode from constructors;
// added example code
// 0.3.3 - 2020-01-27 issue #140 refactor constructors / configure
// 0.3.2 - 2020-01-21 solve #132 cannot read full range in manual mode.
// set automatic mode explicitly in constructors;
// added some error checks
// 0.3.1 - 2020-01-21 issue #133 overflow of the exponent
// 0.3.0 - 2020-01-20 issue #141 Kudos to Moritz89
// 0.2.0 - 2019-08-23 solve #127 == redo #118
2018-12-08 10:06:27 -05:00
// 0.1.10 - 2018-12-08 issue #118 Fix constructor esp8266
// (thanks to Bolukan)
2018-07-01 09:42:05 -04:00
// 0.1.9 - 2018-07-01 issue #108 Fix shift math
// (thanks Roland vandecook)
2018-05-13 10:38:11 -04:00
// 0.1.8 - 2018-05-13 issue #105 Fix read register
// (thanks morxGrillmeister)
// 0.1.7 - 2018-04-02 issue #98 extend constructor for ESP8266
// 0.1.6 - 2017-07-26 revert double to float
2017-04-20 04:21:49 -04:00
// 0.1.5 - updated history
// 0.1.4 - added setAutomaticMode() to max44009.h (thanks debsahu)
2016-12-17 14:58:29 -05:00
// 0.1.03 - added configuration
// 0.1.02 - added threshold code
// 0.1.01 - added interrupt code
// 0.1.00 - initial version
#include "Max44009.h"
#if defined(ESP8266) || defined(ESP32)
Max44009::Max44009(const uint8_t address, const uint8_t dataPin, const uint8_t clockPin)
2016-12-17 14:58:29 -05:00
{
_address = address;
_data = 0;
_error = MAX44009_OK;
_wire = &Wire;
if ((dataPin < 255) && (clockPin < 255))
{
_wire->begin(dataPin, clockPin);
} else {
_wire->begin();
}
}
#endif
Max44009::Max44009(const uint8_t address, const Boolean begin)
{
Max44009::configure(address, &Wire, begin);
}
Max44009::Max44009(const Boolean begin)
{
Max44009::configure(MAX44009_DEFAULT_ADDRESS, &Wire, begin);
}
void Max44009::configure(const uint8_t address, TwoWire *wire, const Boolean begin)
{
_address = address;
_data = 0;
_error = MAX44009_OK;
_wire = wire;
if (begin == Boolean::True)
{
_wire->begin();
}
}
float Max44009::getLux(void)
2016-12-17 14:58:29 -05:00
{
uint8_t dhi = read(MAX44009_LUX_READING_HIGH);
if (_error != MAX44009_OK)
{
_error = MAX44009_ERROR_HIGH_BYTE;
return _error;
}
uint8_t dlo = read(MAX44009_LUX_READING_LOW);
if (_error != MAX44009_OK)
{
_error = MAX44009_ERROR_LOW_BYTE;
return _error;
}
uint8_t e = dhi >> 4;
if (e == 0x0F)
{
_error = MAX44009_ERROR_OVERFLOW;
return _error;
}
uint32_t m = ((dhi & 0x0F) << 4) + (dlo & 0x0F);
m <<= e;
float val = m * 0.045;
return val;
2016-12-17 14:58:29 -05:00
}
int Max44009::getError()
{
int e = _error;
_error = MAX44009_OK;
return e;
2016-12-17 14:58:29 -05:00
}
void Max44009::setHighThreshold(const float value)
2016-12-17 14:58:29 -05:00
{
setThreshold(MAX44009_THRESHOLD_HIGH, value);
2016-12-17 14:58:29 -05:00
}
float Max44009::getHighThreshold(void)
2016-12-17 14:58:29 -05:00
{
return getThreshold(MAX44009_THRESHOLD_HIGH);
2016-12-17 14:58:29 -05:00
}
void Max44009::setLowThreshold(const float value)
2016-12-17 14:58:29 -05:00
{
setThreshold(MAX44009_THRESHOLD_LOW, value);
2016-12-17 14:58:29 -05:00
}
float Max44009::getLowThreshold(void)
2016-12-17 14:58:29 -05:00
{
return getThreshold(MAX44009_THRESHOLD_LOW);
2016-12-17 14:58:29 -05:00
}
void Max44009::setThresholdTimer(const uint8_t value)
2016-12-17 14:58:29 -05:00
{
write(MAX44009_THRESHOLD_TIMER, value);
2016-12-17 14:58:29 -05:00
}
uint8_t Max44009::getThresholdTimer()
{
return read(MAX44009_THRESHOLD_TIMER);
2016-12-17 14:58:29 -05:00
}
void Max44009::setConfiguration(const uint8_t value)
2016-12-17 14:58:29 -05:00
{
write(MAX44009_CONFIGURATION, value);
2016-12-17 14:58:29 -05:00
}
uint8_t Max44009::getConfiguration()
{
return read(MAX44009_CONFIGURATION);
2016-12-17 14:58:29 -05:00
}
void Max44009::setAutomaticMode()
{
// CDR & TIM cannot be written in automatic mode
uint8_t config = read(MAX44009_CONFIGURATION);
config &= ~MAX44009_CFG_MANUAL;
write(MAX44009_CONFIGURATION, config);
2016-12-17 14:58:29 -05:00
}
void Max44009::setContinuousMode()
{
uint8_t config = read(MAX44009_CONFIGURATION);
config |= MAX44009_CFG_CONTINUOUS;
write(MAX44009_CONFIGURATION, config);
}
void Max44009::clrContinuousMode()
{
uint8_t config = read(MAX44009_CONFIGURATION);
config &= ~MAX44009_CFG_CONTINUOUS;
write(MAX44009_CONFIGURATION, config);
2016-12-17 14:58:29 -05:00
}
void Max44009::setManualMode(uint8_t CDR, uint8_t TIM)
{
if (CDR !=0) CDR = 1;
if (TIM > 7) TIM = 7;
uint8_t config = read(MAX44009_CONFIGURATION);
config |= MAX44009_CFG_MANUAL;
config &= 0xF0; // clear old CDR & TIM bits
config |= CDR << 3 | TIM; // set new CDR & TIM bits
write(MAX44009_CONFIGURATION, config);
2016-12-17 14:58:29 -05:00
}
///////////////////////////////////////////////////////////
//
// PRIVATE
//
void Max44009::setThreshold(const uint8_t reg, const float value)
2016-12-17 14:58:29 -05:00
{
// TODO CHECK RANGE
uint32_t m = round(value * 22.2222222); // was round(value / 0.045); multiply is faster.
uint8_t e = 0;
while (m > 255)
{
m >>= 1; // bits get lost
e++;
};
m = (m >> 4) & 0x0F;
e <<= 4;
write(reg, e | m);
2016-12-17 14:58:29 -05:00
}
float Max44009::getThreshold(uint8_t reg)
2016-12-17 14:58:29 -05:00
{
uint8_t data = read(reg);
uint8_t e = (data & 0xF0) >> 4;
uint32_t m = ((data & 0x0F) << 4) + 0x08; // 0x08 = correction for lost bits
m <<= e;
float val = m * 0.045;
return val;
2016-12-17 14:58:29 -05:00
}
2018-05-13 10:38:11 -04:00
uint8_t Max44009::read(uint8_t reg)
2016-12-17 14:58:29 -05:00
{
_wire->beginTransmission(_address);
_wire->write(reg);
_error = _wire->endTransmission();
if (_error != MAX44009_OK)
{
return _data; // last value
}
if (_wire->requestFrom(_address, (uint8_t) 1) != 1)
{
_error = MAX44009_ERROR_WIRE_REQUEST;
return _data; // last value
}
_data = _wire->read();
return _data;
2016-12-17 14:58:29 -05:00
}
void Max44009::write(uint8_t reg, uint8_t value)
{
_wire->beginTransmission(_address);
_wire->write(reg);
_wire->write(value);
_error = _wire->endTransmission();
2016-12-17 14:58:29 -05:00
}
2018-12-07 13:30:15 -05:00
// --- END OF FILE ---