From c1a41b3ce91f2b839faf8559822c1478c12d69d8 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 24 May 2019 09:10:38 +0200 Subject: add ccs811, max44006, max44009 drivers. Not all are working. --- include/driver/ccs811.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 include/driver/ccs811.h (limited to 'include/driver/ccs811.h') diff --git a/include/driver/ccs811.h b/include/driver/ccs811.h new file mode 100644 index 0000000..27d7e41 --- /dev/null +++ b/include/driver/ccs811.h @@ -0,0 +1,20 @@ +#ifndef CCS811_H +#define CCS811_H + +class CCS811 { + private: + CCS811(const CCS811 ©); + unsigned char const address; + unsigned char txbuf[3]; + unsigned char rxbuf[2]; + + public: + CCS811(unsigned char const addr) : address(addr) {} + + void init(); + short check(); +}; + +extern CCS811 ccs811; + +#endif -- cgit v1.2.3