alpahsense

Dependents:   Example_DS3231_test

Revision:
0:ed1f58bf0dc3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Alphasense.h	Wed Mar 06 14:01:39 2019 +0000
@@ -0,0 +1,18 @@
+#include "mbed.h"
+
+class ALPHASENSE {
+    public:
+        ALPHASENSE(I2C* i2c, int num_chan_op1, int num_chan_op2, int we0, int ae0, int sensitivity, int n_sample);
+        float measure();
+    
+    protected:
+        I2C* _i2c;
+        
+    private:
+        int _num_chan_op1;
+        int _num_chan_op2;
+        int _we0;
+        int _ae0;
+        int _sensitivity;
+        int _n_sample;
+};
\ No newline at end of file