diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-05-24 09:10:38 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-05-24 09:10:38 +0200 |
commit | c1a41b3ce91f2b839faf8559822c1478c12d69d8 (patch) | |
tree | 6edb355ceb8baacc36e9fd1fa91b3929e9dac275 /include/driver/max44009.h | |
parent | 942d0d174f8b109bd1e7c1597820dd8228dbcec2 (diff) |
add ccs811, max44006, max44009 drivers. Not all are working.
Diffstat (limited to 'include/driver/max44009.h')
-rw-r--r-- | include/driver/max44009.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/driver/max44009.h b/include/driver/max44009.h new file mode 100644 index 0000000..6bedd3c --- /dev/null +++ b/include/driver/max44009.h @@ -0,0 +1,19 @@ +#ifndef MAX44009_H +#define MAX44009_H + +class MAX44009 { + private: + MAX44009(const MAX44009 ©); + unsigned char const address; + unsigned char txbuf[2]; + unsigned char rxbuf[2]; + + public: + MAX44009(unsigned char const addr) : address(addr) {} + + float getLux(); +}; + +extern MAX44009 max44009; + +#endif |