summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/driver/s5851a.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/driver/s5851a.h b/include/driver/s5851a.h
new file mode 100644
index 0000000..8acdeea
--- /dev/null
+++ b/include/driver/s5851a.h
@@ -0,0 +1,19 @@
+#ifndef S5851A_H
+#define S5851A_H
+
+class S5851A {
+ private:
+ S5851A(const S5851A &copy);
+ unsigned char const address;
+ unsigned char txbuf[1];
+ unsigned char rxbuf[2];
+
+ public:
+ S5851A(unsigned char const addr) : address(addr) {}
+
+ float getTemp();
+};
+
+extern S5851A s5851a;
+
+#endif