From 716bb10f14cda8c727b5730625115c02a7dcebb5 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 31 Aug 2020 13:06:05 +0200 Subject: remove nonfunctional MAX44006 driver --- include/driver/max44006.h | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 include/driver/max44006.h (limited to 'include') diff --git a/include/driver/max44006.h b/include/driver/max44006.h deleted file mode 100644 index e357574..0000000 --- a/include/driver/max44006.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef LM75_H -#define LM75_H - -class LM75 { - private: - LM75(const LM75 ©); - unsigned char const address; - unsigned char txbuf[3]; - unsigned char rxbuf[2]; - - public: - LM75(unsigned char const addr) : address(addr) {} - - float getTemp(); - void setOS(unsigned char os); - void setHyst(unsigned char hyst); -}; - -extern LM75 lm75; - -#endif -- cgit v1.2.3