2020-02-18 08:11:31 +00:00
|
|
|
/*
|
2020-02-19 08:37:36 +00:00
|
|
|
xsns_63_AHT1x.ino - AHT10 I2C temperature and humidity sensor support for Tasmota
|
2020-02-18 08:11:31 +00:00
|
|
|
|
2020-02-19 08:37:36 +00:00
|
|
|
Copyright (C) 2020 Martin Wagner
|
2020-02-18 08:11:31 +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.
|
|
|
|
|
|
|
|
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/>.
|
2020-03-08 13:42:37 +00:00
|
|
|
|
2020-02-18 08:11:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef USE_I2C
|
2020-02-19 08:37:36 +00:00
|
|
|
#ifdef USE_AHT1x
|
2020-02-18 08:11:31 +00:00
|
|
|
/*********************************************************************************************\
|
2020-02-19 08:37:36 +00:00
|
|
|
* AHT10/15 - Temperature and Humidity
|
2020-02-18 08:11:31 +00:00
|
|
|
*
|
|
|
|
* I2C Address: 0x38
|
2020-03-08 13:42:37 +00:00
|
|
|
*
|
|
|
|
* Attention: this Sensor is incompatible with other I2C devices on I2C bus.
|
|
|
|
*
|
|
|
|
* The Datasheet write:
|
|
|
|
* "Only a single AHT10 can be connected to the I2C bus and no other I2C
|
|
|
|
* devices can be connected".
|
|
|
|
*
|
|
|
|
* after lot of search and tests, now is confirmed that works only reliable with one sensor
|
|
|
|
* on I2C Bus
|
2020-02-18 08:11:31 +00:00
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2020-02-19 08:37:36 +00:00
|
|
|
#define XSNS_63 63
|
2020-02-18 08:11:31 +00:00
|
|
|
#define XI2C_43 43 // See I2CDEVICES.md
|
|
|
|
|
|
|
|
#define AHT10_ADDR 0x38
|
|
|
|
|
2020-02-20 12:38:03 +00:00
|
|
|
uint8_t eSensorCalibrateCmd[3] = {0xE1, 0x08, 0x00};
|
|
|
|
uint8_t eSensorMeasureCmd[3] = {0xAC, 0x33, 0x00};
|
|
|
|
uint8_t eSensorResetCmd = 0xBA;
|
2020-02-18 08:11:31 +00:00
|
|
|
|
|
|
|
struct AHT10 {
|
|
|
|
float humidity = NAN;
|
|
|
|
float temperature = NAN;
|
|
|
|
uint8_t valid = 0;
|
|
|
|
uint8_t count = 0;
|
2020-02-19 13:06:35 +00:00
|
|
|
char name[6] = "AHT1x";
|
2020-02-18 08:11:31 +00:00
|
|
|
} AHT10;
|
|
|
|
|
|
|
|
bool AHT10Read(void)
|
|
|
|
{
|
|
|
|
if (AHT10.valid) { AHT10.valid--; }
|
|
|
|
|
2020-02-20 12:38:03 +00:00
|
|
|
uint8_t data[6];
|
|
|
|
|
|
|
|
Wire.beginTransmission(AHT10_ADDR);
|
|
|
|
Wire.write(eSensorMeasureCmd, 3);
|
|
|
|
Wire.endTransmission();
|
2020-03-08 13:42:37 +00:00
|
|
|
delay(80);
|
2020-02-20 12:38:03 +00:00
|
|
|
|
|
|
|
Wire.requestFrom(AHT10_ADDR, 6);
|
|
|
|
for (uint32_t i = 0; Wire.available() > 0; i++) {
|
|
|
|
data[i] = Wire.read();
|
|
|
|
}
|
2020-02-19 18:49:09 +00:00
|
|
|
|
2020-02-20 12:38:03 +00:00
|
|
|
uint32_t result_h = ((data[1] << 16) | (data[2] << 8) | data[3]) >> 4;
|
|
|
|
uint32_t result_t = ((data[3] & 0x0F) << 16) | (data[4] << 8) | data[5];
|
2020-02-19 18:49:09 +00:00
|
|
|
|
2020-02-20 12:38:03 +00:00
|
|
|
float humidity = result_h * 100 / 1048576;
|
|
|
|
float temperature = ((200 * result_t) / 1048576) - 50;
|
2020-02-19 18:49:09 +00:00
|
|
|
|
2020-02-20 12:38:03 +00:00
|
|
|
if (isnan(temperature) || isnan(humidity)) { return false; }
|
2020-02-18 08:11:31 +00:00
|
|
|
|
2020-02-20 12:38:03 +00:00
|
|
|
AHT10.humidity = ConvertHumidity(humidity);
|
|
|
|
AHT10.temperature = ConvertTemp(temperature);
|
2020-02-18 08:11:31 +00:00
|
|
|
|
|
|
|
AHT10.valid = SENSOR_MAX_MISS;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/********************************************************************************************/
|
2020-02-20 12:38:03 +00:00
|
|
|
|
|
|
|
bool AHT10Init(void)
|
2020-02-18 19:08:22 +00:00
|
|
|
{
|
2020-02-20 12:38:03 +00:00
|
|
|
Wire.begin(AHT10_ADDR);
|
|
|
|
Wire.beginTransmission(AHT10_ADDR);
|
2020-03-08 13:42:37 +00:00
|
|
|
Wire.write(eSensorCalibrateCmd, 3); // init with internal temp coef.
|
2020-02-20 12:38:03 +00:00
|
|
|
Wire.endTransmission();
|
|
|
|
|
2020-03-08 13:42:37 +00:00
|
|
|
delay(40); // after tests, its ok
|
2020-02-20 12:38:03 +00:00
|
|
|
|
2020-03-08 13:42:37 +00:00
|
|
|
return (0x08 == (AHT10ReadStatus() & 0x68));
|
2020-02-18 19:08:22 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 12:38:03 +00:00
|
|
|
uint8_t AHT10ReadStatus(void)
|
2020-02-18 08:11:31 +00:00
|
|
|
{
|
2020-02-20 12:38:03 +00:00
|
|
|
Wire.requestFrom(AHT10_ADDR, 1);
|
|
|
|
uint8_t result = Wire.read();
|
|
|
|
return result;
|
2020-02-18 08:11:31 +00:00
|
|
|
}
|
|
|
|
|
2020-02-18 19:13:12 +00:00
|
|
|
void AHT10Reset(void)
|
2020-02-18 19:08:22 +00:00
|
|
|
{
|
2020-02-20 12:38:03 +00:00
|
|
|
Wire.beginTransmission(AHT10_ADDR);
|
|
|
|
Wire.write(eSensorResetCmd);
|
|
|
|
Wire.endTransmission();
|
|
|
|
delay(20);
|
2020-02-18 19:08:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/********************************************************************************************/
|
2020-02-20 12:38:03 +00:00
|
|
|
|
2020-02-18 08:11:31 +00:00
|
|
|
void AHT10Detect(void)
|
|
|
|
{
|
2020-02-20 12:38:03 +00:00
|
|
|
if (I2cActive(AHT10_ADDR)) { return; }
|
2020-02-18 08:11:31 +00:00
|
|
|
|
2020-02-20 12:38:03 +00:00
|
|
|
if (AHT10Init()) {
|
2020-02-18 08:11:31 +00:00
|
|
|
I2cSetActiveFound(AHT10_ADDR, AHT10.name);
|
|
|
|
AHT10.count = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AHT10EverySecond(void)
|
|
|
|
{
|
|
|
|
if (uptime &1) {
|
|
|
|
// AHT10: 55mS
|
|
|
|
if (!AHT10Read()) {
|
|
|
|
AddLogMissed(AHT10.name, AHT10.valid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AHT10Show(bool json)
|
|
|
|
{
|
|
|
|
if (AHT10.valid) {
|
|
|
|
char temperature[33];
|
|
|
|
dtostrfd(AHT10.temperature, Settings.flag2.temperature_resolution, temperature);
|
|
|
|
char humidity[33];
|
|
|
|
dtostrfd(AHT10.humidity, Settings.flag2.humidity_resolution, humidity);
|
|
|
|
|
|
|
|
if (json) {
|
|
|
|
ResponseAppend_P(JSON_SNS_TEMPHUM, AHT10.name, temperature, humidity);
|
|
|
|
#ifdef USE_DOMOTICZ
|
|
|
|
if ((0 == tele_period)) {
|
|
|
|
DomoticzTempHumSensor(temperature, humidity);
|
|
|
|
}
|
|
|
|
#endif // USE_DOMOTICZ
|
|
|
|
#ifdef USE_KNX
|
|
|
|
if (0 == tele_period) {
|
|
|
|
KnxSensor(KNX_TEMPERATURE, AHT10.temperature);
|
|
|
|
KnxSensor(KNX_HUMIDITY, AHT10.humidity);
|
|
|
|
}
|
|
|
|
#endif // USE_KNX
|
|
|
|
#ifdef USE_WEBSERVER
|
|
|
|
} else {
|
|
|
|
WSContentSend_PD(HTTP_SNS_TEMP, AHT10.name, temperature, TempUnit());
|
|
|
|
WSContentSend_PD(HTTP_SNS_HUM, AHT10.name, humidity);
|
|
|
|
#endif // USE_WEBSERVER
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* Interface
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2020-02-19 08:37:36 +00:00
|
|
|
bool Xsns63(uint8_t function)
|
2020-02-18 08:11:31 +00:00
|
|
|
{
|
|
|
|
if (!I2cEnabled(XI2C_43)) { return false; }
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
if (FUNC_INIT == function) {
|
|
|
|
AHT10Detect();
|
|
|
|
}
|
|
|
|
else if (AHT10.count) {
|
|
|
|
switch (function) {
|
|
|
|
case FUNC_EVERY_SECOND:
|
|
|
|
AHT10EverySecond();
|
|
|
|
break;
|
|
|
|
case FUNC_JSON_APPEND:
|
|
|
|
AHT10Show(1);
|
|
|
|
break;
|
|
|
|
#ifdef USE_WEBSERVER
|
|
|
|
case FUNC_WEB_SENSOR:
|
|
|
|
AHT10Show(0);
|
|
|
|
break;
|
|
|
|
#endif // USE_WEBSERVER
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // USE_AHT10
|
|
|
|
#endif // USE_I2C
|