alpahsense
Dependents: Example_DS3231_test
Alphasense.h
- Committer:
- etiene32
- Date:
- 2019-03-06
- Revision:
- 0:ed1f58bf0dc3
File content as of revision 0:ed1f58bf0dc3:
#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; };