From afe39c8baefc92f0d8f9c719990299f6affa498d Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 19 Dec 2021 22:24:25 +0100 Subject: ccs811: add setEnv variant with float arguments --- src/driver/ccs811.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/driver') diff --git a/src/driver/ccs811.cc b/src/driver/ccs811.cc index 66c238a..531dadb 100644 --- a/src/driver/ccs811.cc +++ b/src/driver/ccs811.cc @@ -65,6 +65,11 @@ void CCS811::setEnv(unsigned char humi, unsigned char humi_fraction, unsigned ch i2c.xmit(address, 5, txbuf, 0, rxbuf); } +void CCS811::setEnv(float humi, float temp) +{ + setEnv(humi * 2, 0, (temp - 25) * 2, 0); +} + unsigned char CCS811::getStatus() { txbuf[0] = 0x00; -- cgit v1.2.3