2020-10-23 11:47:24 +01:00
|
|
|
/*
|
|
|
|
xsns_78_ezortd.ino - EZO RTD I2C RTD sensor support for Tasmota
|
|
|
|
|
2021-01-01 12:44:04 +00:00
|
|
|
Copyright (C) 2021 Christopher Tremblay
|
2020-10-23 11:47:24 +01: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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef USE_I2C
|
|
|
|
#ifdef USE_EZORTD
|
|
|
|
|
|
|
|
#define EZO_RTD_READ_LATENCY 600
|
|
|
|
|
|
|
|
struct EZORTD : public EZOStruct {
|
|
|
|
EZORTD(uint32_t addr) : EZOStruct(addr), temperature(NAN) {}
|
|
|
|
|
|
|
|
virtual void ProcessMeasurement(void)
|
|
|
|
{
|
|
|
|
char data[D_EZO_MAX_BUF];
|
|
|
|
|
|
|
|
EZOStruct::ProcessMeasurement(data, sizeof(data), EZO_RTD_READ_LATENCY);
|
|
|
|
temperature = CharToFloat(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Show(bool json, const char *name)
|
2020-10-26 07:09:44 +00:00
|
|
|
{
|
2021-01-26 16:12:08 +00:00
|
|
|
float temp = ConvertTemp(temperature);
|
2020-10-23 11:47:24 +01:00
|
|
|
|
|
|
|
if (json) {
|
2021-06-11 17:14:12 +01:00
|
|
|
ResponseAppend_P(JSON_SNS_F_TEMP, name, Settings->flag2.temperature_resolution, &temp);
|
2021-01-01 12:44:04 +00:00
|
|
|
#ifdef USE_WEBSERVER
|
2021-02-22 10:40:37 +00:00
|
|
|
}else {
|
2021-01-26 16:12:08 +00:00
|
|
|
WSContentSend_Temp(name, temp);
|
2020-10-23 11:47:24 +01:00
|
|
|
#endif // USE_WEBSERVER
|
|
|
|
}
|
2020-10-26 07:09:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char id[] PROGMEM;
|
2020-10-23 11:47:24 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
float temperature;
|
|
|
|
};
|
|
|
|
|
2020-10-26 07:09:44 +00:00
|
|
|
const char EZORTD::id[] PROGMEM = "RTD";
|
|
|
|
|
2020-10-23 11:47:24 +01:00
|
|
|
#endif // USE_EZORTD
|
|
|
|
#endif // USE_I2C
|