summaryrefslogtreecommitdiff
path: root/include/driver/am2320.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/driver/am2320.h')
-rw-r--r--include/driver/am2320.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/driver/am2320.h b/include/driver/am2320.h
new file mode 100644
index 0000000..39c5f7e
--- /dev/null
+++ b/include/driver/am2320.h
@@ -0,0 +1,22 @@
+#ifndef AM2320_H
+#define AM2320_H
+
+class AM2320 {
+ private:
+ AM2320(const AM2320 &copy);
+ unsigned char const address;
+ unsigned char txbuf[3];
+ unsigned char rxbuf[8];
+
+ public:
+ AM2320(unsigned char const addr) : address(addr) {}
+
+ void read();
+ unsigned char getStatus();
+ float getTemp();
+ float getHumidity();
+};
+
+extern AM2320 am2320;
+
+#endif