mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-07-27 19:57:38 +00:00
530 lines
12 KiB
C++
530 lines
12 KiB
C++
/**************************************************************************/
|
|
/*!
|
|
@file Adafruit_TSL2591.cpp
|
|
@author KT0WN (adafruit.com)
|
|
|
|
This is a library for the Adafruit TSL2591 breakout board
|
|
This library works with the Adafruit TSL2591 breakout
|
|
----> https://www.adafruit.com/products/1980
|
|
|
|
Check out the links above for our tutorials and wiring diagrams
|
|
These chips use I2C to communicate
|
|
|
|
Adafruit invests time and resources providing this open source code,
|
|
please support Adafruit and open-source hardware by purchasing
|
|
products from Adafruit!
|
|
|
|
@section LICENSE
|
|
|
|
Software License Agreement (BSD License)
|
|
|
|
Copyright (c) 2014 Adafruit Industries
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are met:
|
|
1. Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
3. Neither the name of the copyright holders nor the
|
|
names of its contributors may be used to endorse or promote products
|
|
derived from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
|
|
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
|
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
/**************************************************************************/
|
|
#if defined(ESP8266) || defined(ESP32)
|
|
#include <pgmspace.h>
|
|
#else
|
|
#include <avr/pgmspace.h>
|
|
#endif
|
|
#if defined(__AVR__)
|
|
#include <util/delay.h>
|
|
#endif
|
|
#include <stdlib.h>
|
|
|
|
#include "Adafruit_TSL2591.h"
|
|
|
|
Adafruit_TSL2591::Adafruit_TSL2591(int32_t sensorID)
|
|
{
|
|
_initialized = false;
|
|
_integration = TSL2591_INTEGRATIONTIME_100MS;
|
|
_gain = TSL2591_GAIN_MED;
|
|
_sensorID = sensorID;
|
|
|
|
// we cant do wire initialization till later, because we havent loaded Wire yet
|
|
}
|
|
|
|
boolean Adafruit_TSL2591::begin(void)
|
|
{
|
|
//Wire.begin(); called in ESPEasy framework
|
|
|
|
/*
|
|
for (uint8_t i=0; i<0x20; i++)
|
|
{
|
|
uint8_t id = read8(0x12);
|
|
Serial.print("$"); Serial.print(i, HEX);
|
|
Serial.print(" = 0x"); Serial.println(read8(i), HEX);
|
|
}
|
|
*/
|
|
|
|
uint8_t id = read8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_DEVICE_ID);
|
|
if (id == 0x50 )
|
|
{
|
|
// Serial.println("Found Adafruit_TSL2591");
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
|
|
_initialized = true;
|
|
|
|
// Set default integration time and gain
|
|
setTiming(_integration);
|
|
setGain(_gain);
|
|
|
|
// Note: by default, the device is in power down mode on bootup
|
|
disable();
|
|
|
|
return true;
|
|
}
|
|
|
|
void Adafruit_TSL2591::enable(void)
|
|
{
|
|
if (!_initialized)
|
|
{
|
|
if (!begin())
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Enable the device by setting the control bit to 0x01
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_ENABLE, TSL2591_ENABLE_POWERON | TSL2591_ENABLE_AEN | TSL2591_ENABLE_AIEN | TSL2591_ENABLE_NPIEN);
|
|
}
|
|
|
|
void Adafruit_TSL2591::disable(void)
|
|
{
|
|
if (!_initialized)
|
|
{
|
|
if (!begin())
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Disable the device by setting the control bit to 0x00
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_ENABLE, TSL2591_ENABLE_POWEROFF);
|
|
}
|
|
|
|
void Adafruit_TSL2591::setGain(tsl2591Gain_t gain)
|
|
{
|
|
if (!_initialized)
|
|
{
|
|
if (!begin())
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
enable();
|
|
_gain = gain;
|
|
const uint8_t value = static_cast<uint8_t>(_integration) | static_cast<uint8_t>(_gain);
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_CONTROL, value);
|
|
disable();
|
|
}
|
|
|
|
tsl2591Gain_t Adafruit_TSL2591::getGain()
|
|
{
|
|
return _gain;
|
|
}
|
|
|
|
void Adafruit_TSL2591::setTiming(tsl2591IntegrationTime_t integration)
|
|
{
|
|
if (!_initialized)
|
|
{
|
|
if (!begin())
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
enable();
|
|
_integration = integration;
|
|
const uint8_t value = static_cast<uint8_t>(_integration) | static_cast<uint8_t>(_gain);
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_CONTROL, value);
|
|
disable();
|
|
}
|
|
|
|
tsl2591IntegrationTime_t Adafruit_TSL2591::getTiming()
|
|
{
|
|
return _integration;
|
|
}
|
|
|
|
float Adafruit_TSL2591::calculateLuxf(uint16_t ch0, uint16_t ch1)
|
|
{
|
|
float atime, again;
|
|
float cpl, lux1, lux2, lux;
|
|
//uint32_t chan0, chan1;
|
|
|
|
// Check for overflow conditions first
|
|
if ((ch0 == 0xFFFF) | (ch1 == 0xFFFF))
|
|
{
|
|
// Signal an overflow
|
|
return 0;
|
|
}
|
|
|
|
// Note: This algorithm is based on preliminary coefficients
|
|
// provided by AMS and may need to be updated in the future
|
|
|
|
switch (_integration)
|
|
{
|
|
case TSL2591_INTEGRATIONTIME_100MS :
|
|
atime = 100.0F;
|
|
break;
|
|
case TSL2591_INTEGRATIONTIME_200MS :
|
|
atime = 200.0F;
|
|
break;
|
|
case TSL2591_INTEGRATIONTIME_300MS :
|
|
atime = 300.0F;
|
|
break;
|
|
case TSL2591_INTEGRATIONTIME_400MS :
|
|
atime = 400.0F;
|
|
break;
|
|
case TSL2591_INTEGRATIONTIME_500MS :
|
|
atime = 500.0F;
|
|
break;
|
|
case TSL2591_INTEGRATIONTIME_600MS :
|
|
atime = 600.0F;
|
|
break;
|
|
default: // 100ms
|
|
atime = 100.0F;
|
|
break;
|
|
}
|
|
|
|
switch (_gain)
|
|
{
|
|
case TSL2591_GAIN_LOW :
|
|
again = 1.0F;
|
|
break;
|
|
case TSL2591_GAIN_MED :
|
|
again = 25.0F;
|
|
break;
|
|
case TSL2591_GAIN_HIGH :
|
|
again = 428.0F;
|
|
break;
|
|
case TSL2591_GAIN_MAX :
|
|
again = 9876.0F;
|
|
break;
|
|
default:
|
|
again = 1.0F;
|
|
break;
|
|
}
|
|
|
|
// cpl = (ATIME * AGAIN) / DF
|
|
cpl = (atime * again) / TSL2591_LUX_DF;
|
|
|
|
lux1 = (((float) ch0 - (float) ch1)) * (1.0F - ((float) ch1 / (float) ch0)) / cpl;//( (float)ch0 - (TSL2591_LUX_COEFB * (float)ch1) ) / cpl;
|
|
lux2 = ((TSL2591_LUX_COEFC * (float) ch0) - (TSL2591_LUX_COEFD * (float) ch1)) / cpl;
|
|
lux = lux1 > lux2 ? lux1 : lux2;
|
|
|
|
// Alternate lux calculation
|
|
//lux = ( (float)ch0 - ( 1.7F * (float)ch1 ) ) / cpl;
|
|
|
|
// Signal I2C had no errors
|
|
return lux;
|
|
}
|
|
|
|
uint32_t Adafruit_TSL2591::calculateLux(uint16_t ch0, uint16_t ch1)
|
|
{
|
|
return (uint32_t) calculateLuxf(ch0, ch1);
|
|
}
|
|
|
|
uint32_t Adafruit_TSL2591::getFullLuminosity (bool& finished)
|
|
{
|
|
const uint8_t status = read8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_DEVICE_STATUS);
|
|
|
|
// ALS Valid. Indicates that the ADC channels have completed an
|
|
// integration cycle since the AEN bit was asserted.
|
|
finished = status & 0x01;
|
|
if (!finished) {
|
|
return 0;
|
|
}
|
|
|
|
uint32_t x;
|
|
uint16_t y = 0;
|
|
y |= read16(TSL2591_COMMAND_BIT | TSL2591_REGISTER_CHAN0_LOW);
|
|
x = read16(TSL2591_COMMAND_BIT | TSL2591_REGISTER_CHAN1_LOW);
|
|
x <<= 16;
|
|
x |= y;
|
|
|
|
disable();
|
|
|
|
return x;
|
|
}
|
|
|
|
uint32_t Adafruit_TSL2591::getFullLuminosity (void)
|
|
{
|
|
if (!_initialized)
|
|
{
|
|
if (!begin())
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
// Enable the device
|
|
enable();
|
|
|
|
// Wait x ms for ADC to complete
|
|
for (uint8_t d=0; d<=_integration; d++)
|
|
{
|
|
delay(120);
|
|
}
|
|
|
|
uint32_t x;
|
|
uint16_t y = 0;
|
|
y |= read16(TSL2591_COMMAND_BIT | TSL2591_REGISTER_CHAN0_LOW);
|
|
x = read16(TSL2591_COMMAND_BIT | TSL2591_REGISTER_CHAN1_LOW);
|
|
x <<= 16;
|
|
x |= y;
|
|
|
|
disable();
|
|
|
|
return x;
|
|
}
|
|
|
|
uint16_t Adafruit_TSL2591::getLuminosity (uint8_t channel)
|
|
{
|
|
uint32_t x = getFullLuminosity();
|
|
|
|
if (channel == TSL2591_FULLSPECTRUM)
|
|
{
|
|
// Reads two byte value from channel 0 (visible + infrared)
|
|
return (x & 0xFFFF);
|
|
}
|
|
else if (channel == TSL2591_INFRARED)
|
|
{
|
|
// Reads two byte value from channel 1 (infrared)
|
|
return (x >> 16);
|
|
}
|
|
else if (channel == TSL2591_VISIBLE)
|
|
{
|
|
// Reads all and subtracts out just the visible!
|
|
return ( (x & 0xFFFF) - (x >> 16));
|
|
}
|
|
|
|
// unknown channel!
|
|
return 0;
|
|
}
|
|
|
|
void Adafruit_TSL2591::registerInterrupt(uint16_t lowerThreshold, uint16_t upperThreshold)
|
|
{
|
|
if (!_initialized)
|
|
{
|
|
if (!begin())
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
enable();
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_THRESHOLD_NPAILTL, lowerThreshold);
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_THRESHOLD_NPAILTH, lowerThreshold >> 8);
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_THRESHOLD_NPAIHTL, upperThreshold);
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_THRESHOLD_NPAIHTH, upperThreshold >> 8);
|
|
disable();
|
|
}
|
|
|
|
void Adafruit_TSL2591::registerInterrupt(uint16_t lowerThreshold, uint16_t upperThreshold, tsl2591Persist_t persist)
|
|
{
|
|
if (!_initialized)
|
|
{
|
|
if (!begin())
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
enable();
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_PERSIST_FILTER, persist);
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_THRESHOLD_AILTL, lowerThreshold);
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_THRESHOLD_AILTH, lowerThreshold >> 8);
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_THRESHOLD_AIHTL, upperThreshold);
|
|
write8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_THRESHOLD_AIHTH, upperThreshold >> 8);
|
|
disable();
|
|
}
|
|
|
|
void Adafruit_TSL2591::clearInterrupt()
|
|
{
|
|
if (!_initialized)
|
|
{
|
|
if (!begin())
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
enable();
|
|
write8(TSL2591_CLEAR_INT);
|
|
disable();
|
|
}
|
|
|
|
|
|
uint8_t Adafruit_TSL2591::getStatus()
|
|
{
|
|
if (!_initialized)
|
|
{
|
|
if (!begin())
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
// Enable the device
|
|
enable();
|
|
uint8_t x;
|
|
x = read8(TSL2591_COMMAND_BIT | TSL2591_REGISTER_DEVICE_STATUS);
|
|
disable();
|
|
return x;
|
|
}
|
|
|
|
|
|
uint8_t Adafruit_TSL2591::read8(uint8_t reg)
|
|
{
|
|
uint8_t x;
|
|
|
|
Wire.beginTransmission(TSL2591_ADDR);
|
|
#if ARDUINO >= 100
|
|
Wire.write(reg);
|
|
#else
|
|
Wire.send(reg);
|
|
#endif
|
|
Wire.endTransmission();
|
|
|
|
Wire.requestFrom(TSL2591_ADDR, 1);
|
|
#if ARDUINO >= 100
|
|
x = Wire.read();
|
|
#else
|
|
x = Wire.receive();
|
|
#endif
|
|
// while (! Wire.available());
|
|
// return Wire.read();
|
|
return x;
|
|
}
|
|
|
|
uint16_t Adafruit_TSL2591::read16(uint8_t reg)
|
|
{
|
|
uint16_t x;
|
|
uint16_t t;
|
|
|
|
Wire.beginTransmission(TSL2591_ADDR);
|
|
#if ARDUINO >= 100
|
|
Wire.write(reg);
|
|
#else
|
|
Wire.send(reg);
|
|
#endif
|
|
Wire.endTransmission();
|
|
|
|
Wire.requestFrom(TSL2591_ADDR, 2);
|
|
#if ARDUINO >= 100
|
|
t = Wire.read();
|
|
x = Wire.read();
|
|
#else
|
|
t = Wire.receive();
|
|
x = Wire.receive();
|
|
#endif
|
|
x <<= 8;
|
|
x |= t;
|
|
return x;
|
|
}
|
|
|
|
void Adafruit_TSL2591::write8 (uint8_t reg, uint8_t value)
|
|
{
|
|
Wire.beginTransmission(TSL2591_ADDR);
|
|
#if ARDUINO >= 100
|
|
Wire.write(reg);
|
|
Wire.write(value);
|
|
#else
|
|
Wire.send(reg);
|
|
Wire.send(value);
|
|
#endif
|
|
Wire.endTransmission();
|
|
}
|
|
|
|
|
|
void Adafruit_TSL2591::write8 (uint8_t reg)
|
|
{
|
|
Wire.beginTransmission(TSL2591_ADDR);
|
|
#if ARDUINO >= 100
|
|
Wire.write(reg);
|
|
#else
|
|
Wire.send(reg);
|
|
#endif
|
|
Wire.endTransmission();
|
|
}
|
|
|
|
/**************************************************************************/
|
|
/*!
|
|
@brief Gets the most recent sensor event
|
|
*/
|
|
/**************************************************************************/
|
|
bool Adafruit_TSL2591::getEvent(sensors_event_t *event)
|
|
{
|
|
uint16_t ir, full;
|
|
uint32_t lum = getFullLuminosity();
|
|
/* Early silicon seems to have issues when there is a sudden jump in */
|
|
/* light levels. :( To work around this for now sample the sensor 2x */
|
|
lum = getFullLuminosity();
|
|
ir = lum >> 16;
|
|
full = lum & 0xFFFF;
|
|
|
|
/* Clear the event */
|
|
memset(event, 0, sizeof(sensors_event_t));
|
|
|
|
event->version = sizeof(sensors_event_t);
|
|
event->sensor_id = _sensorID;
|
|
event->type = SENSOR_TYPE_LIGHT;
|
|
event->timestamp = millis();
|
|
|
|
/* Calculate the actual lux value */
|
|
/* 0 = sensor overflow (too much light) */
|
|
event->light = calculateLux(full, ir);
|
|
|
|
return true;
|
|
}
|
|
|
|
/**************************************************************************/
|
|
/*!
|
|
@brief Gets the sensor_t data
|
|
*/
|
|
/**************************************************************************/
|
|
void Adafruit_TSL2591::getSensor(sensor_t *sensor)
|
|
{
|
|
/* Clear the sensor_t object */
|
|
memset(sensor, 0, sizeof(sensor_t));
|
|
|
|
/* Insert the sensor name in the fixed length char array */
|
|
strncpy (sensor->name, "TSL2591", sizeof(sensor->name) - 1);
|
|
sensor->name[sizeof(sensor->name)- 1] = 0;
|
|
sensor->version = 1;
|
|
sensor->sensor_id = _sensorID;
|
|
sensor->type = SENSOR_TYPE_LIGHT;
|
|
sensor->min_delay = 0;
|
|
sensor->max_value = 88000.0;
|
|
sensor->min_value = 0.0;
|
|
sensor->resolution = 1.0;
|
|
}
|