From bdb1590839e5962741140ce2f4db722219f9d6f6 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 26 Feb 2021 19:16:55 +0100 Subject: Add SCD4x driver and datalog integration --- include/driver/scd4x.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 include/driver/scd4x.h (limited to 'include/driver/scd4x.h') diff --git a/include/driver/scd4x.h b/include/driver/scd4x.h new file mode 100644 index 0000000..19ba20d --- /dev/null +++ b/include/driver/scd4x.h @@ -0,0 +1,34 @@ +/* + * Copyright 2021 Daniel Friesel + * + * SPDX-License-Identifier: BSD-2-Clause + */ +#ifndef SCD4x_H +#define SCD4x_H + +class SCD4x { + private: + SCD4x(const SCD4x ©); + unsigned char const address = 0x62; + unsigned char txbuf[2]; + unsigned char rxbuf[9]; + + public: + SCD4x() {} + + unsigned short co2; + unsigned short rawTemperature; + unsigned short rawHumidity; + + void start(); + void stop(); + + void startLowPower(); + void stopLowPower(); + + void read(); +}; + +extern SCD4x scd4x; + +#endif -- cgit v1.2.3