Tasmota/tasmota/xsns_10_bh1750.ino

180 lines
5.2 KiB
Arduino
Raw Normal View History

2017-01-28 13:41:01 +00:00
/*
xsns_10_bh1750.ino - BH1750 ambient light sensor support for Tasmota
2017-01-28 13:41:01 +00:00
2019-12-31 13:23:34 +00:00
Copyright (C) 2020 Theo Arends
2017-01-28 13:41:01 +00:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2017-01-28 13:41:01 +00:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
2017-01-28 13:41:01 +00:00
*/
#ifdef USE_I2C
#ifdef USE_BH1750
/*********************************************************************************************\
* BH1750 - Ambient Light Intensity
*
* I2C Address: 0x23 or 0x5C
2017-01-28 13:41:01 +00:00
\*********************************************************************************************/
#define XSNS_10 10
#define XI2C_11 11 // See I2CDEVICES.md
2017-01-28 13:41:01 +00:00
#define BH1750_ADDR1 0x23
#define BH1750_ADDR2 0x5C
#define BH1750_CONTINUOUS_HIGH_RES_MODE2 0x11 // Start measurement at 0.5 lx resolution. Measurement time is approx 120ms.
#define BH1750_CONTINUOUS_HIGH_RES_MODE 0x10 // Start measurement at 1 lx resolution. Measurement time is approx 120ms.
#define BH1750_CONTINUOUS_LOW_RES_MODE 0x13 // Start measurement at 4 lx resolution. Measurement time is approx 16ms.
2017-01-28 13:41:01 +00:00
const char kBhMessages[] PROGMEM = "Resolution High|Resolution High2|Resolution Low";
struct BH1750DATA {
uint8_t address;
uint8_t addresses[2] = { BH1750_ADDR1, BH1750_ADDR2 };
uint8_t resolution[3] = { BH1750_CONTINUOUS_HIGH_RES_MODE, BH1750_CONTINUOUS_HIGH_RES_MODE2, BH1750_CONTINUOUS_LOW_RES_MODE };
uint8_t type = 0;
uint8_t valid = 0;
uint16_t illuminance = 0;
char types[7] = "BH1750";
} Bh1750;
/*********************************************************************************************/
bool Bh1750SetResolution(void)
{
Wire.beginTransmission(Bh1750.address);
Wire.write(Bh1750.resolution[Settings.SensorBits1.bh1750_resolution]);
return (!Wire.endTransmission());
}
2017-01-28 13:41:01 +00:00
2018-11-14 13:32:09 +00:00
bool Bh1750Read(void)
2017-01-28 13:41:01 +00:00
{
if (Bh1750.valid) { Bh1750.valid--; }
if (2 != Wire.requestFrom(Bh1750.address, (uint8_t)2)) { return false; }
Bh1750.illuminance = (Wire.read() << 8) | Wire.read();
if (1 == Settings.SensorBits1.bh1750_resolution) { Bh1750.illuminance >>= 1; }
Bh1750.illuminance /= 1.2;
Bh1750.valid = SENSOR_MAX_MISS;
return true;
2017-01-28 13:41:01 +00:00
}
/********************************************************************************************/
2018-11-14 13:32:09 +00:00
void Bh1750Detect(void)
2017-01-28 13:41:01 +00:00
{
for (uint32_t i = 0; i < sizeof(Bh1750.addresses); i++) {
Bh1750.address = Bh1750.addresses[i];
if (I2cActive(Bh1750.address)) { continue; }
if (Bh1750SetResolution()) {
I2cSetActiveFound(Bh1750.address, Bh1750.types);
Bh1750.type = 1;
break;
}
2017-01-28 13:41:01 +00:00
}
}
2018-11-14 13:32:09 +00:00
void Bh1750EverySecond(void)
{
2019-11-11 16:32:44 +00:00
// 1mS
if (!Bh1750Read()) {
AddLogMissed(Bh1750.types, Bh1750.valid);
}
}
/*********************************************************************************************\
* Command Sensor10
*
* 0 - High resolution mode (default)
* 1 - High resolution mode 2
* 2 - Low resolution mode
\*********************************************************************************************/
bool Bh1750CommandSensor(void)
{
uint32_t message_index = Settings.SensorBits1.bh1750_resolution;
if (XdrvMailbox.data_len) {
switch (XdrvMailbox.payload) {
case 0:
case 1:
case 2:
Settings.SensorBits1.bh1750_resolution = XdrvMailbox.payload;
Bh1750SetResolution();
message_index = Settings.SensorBits1.bh1750_resolution;
break;
}
}
char res_text[64];
Response_P(S_JSON_SENSOR_INDEX_SVALUE, XSNS_10, GetTextIndexed(res_text, sizeof(res_text), message_index, kBhMessages));
return true;
}
void Bh1750Show(bool json)
2017-01-28 13:41:01 +00:00
{
if (Bh1750.valid) {
if (json) {
ResponseAppend_P(JSON_SNS_ILLUMINANCE, Bh1750.types, Bh1750.illuminance);
#ifdef USE_DOMOTICZ
if (0 == tele_period) {
DomoticzSensor(DZ_ILLUMINANCE, Bh1750.illuminance);
}
#endif // USE_DOMOTICZ
#ifdef USE_WEBSERVER
} else {
WSContentSend_PD(HTTP_SNS_ILLUMINANCE, Bh1750.types, Bh1750.illuminance);
#endif // USE_WEBSERVER
}
2017-01-28 13:41:01 +00:00
}
}
/*********************************************************************************************\
* Interface
\*********************************************************************************************/
bool Xsns10(uint8_t function)
{
2019-11-04 09:38:05 +00:00
if (!I2cEnabled(XI2C_11)) { return false; }
bool result = false;
2019-11-11 16:32:44 +00:00
if (FUNC_INIT == function) {
Bh1750Detect();
}
else if (Bh1750.type) {
2019-11-11 16:32:44 +00:00
switch (function) {
case FUNC_EVERY_SECOND:
Bh1750EverySecond();
break;
case FUNC_COMMAND_SENSOR:
if (XSNS_10 == XdrvMailbox.index) {
result = Bh1750CommandSensor();
}
break;
2019-11-11 16:32:44 +00:00
case FUNC_JSON_APPEND:
Bh1750Show(1);
break;
#ifdef USE_WEBSERVER
2019-11-11 16:32:44 +00:00
case FUNC_WEB_SENSOR:
Bh1750Show(0);
break;
#endif // USE_WEBSERVER
2019-11-11 16:32:44 +00:00
}
}
return result;
}
2017-01-28 13:41:01 +00:00
#endif // USE_BH1750
#endif // USE_I2C