summaryrefslogtreecommitdiff
path: root/include/driver/max44006.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/driver/max44006.h')
-rw-r--r--include/driver/max44006.h21
1 files changed, 0 insertions, 21 deletions
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 &copy);
- 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