Line 48 commented out
Dependents: UPAS_MicroBLE ENV_NODE_REQUEST_POC ENV_F303K8
Fork of SI1145 by
Diff: SI1145.h
- Revision:
- 0:0490a77adbc5
- Child:
- 1:8587b5583343
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SI1145.h Wed May 20 03:49:03 2015 +0000 @@ -0,0 +1,64 @@ +/** + * SI1145 Digital UV Index / IR / Visible Light Sensor library + * @author N Good + * @date 5-May-2015 + * Library for "SI1145 Digital UV Index / IR / Visible Light Sensor" from adafruit + * https://www.adafruit.com/products/1777 + */ + +#include "mbed.h" +#define SLAVE_ADDRESS (0x60 << 1) +extern Serial pc; + +/** SI1145 class + * SI1145: A library to correct environmental data using adafruit SI1145 device + */ + +class SI1145 +{ +public: + + /** Create a SI1145 instance + * which is connected to specified I2C pins with specified address + * @param sda I2C-bus SDA pin + * @param scl I2C-bus SCL pin + * @param slave_adr (option) I2C-bus address (default: 0x60) + */ + SI1145(PinName sda, PinName sck, char slave_adr = SLAVE_ADDRESS); + /** Create a SI1145 instance + * which is connected to specified I2C pins with specified address + * @param i2c_obj I2C object (instance) + * @param slave_adr (option) I2C-bus address (default: 0x60) + */ + SI1145(I2C &i2c_obj, char slave_adr = SLAVE_ADDRESS); + /** Destructor of SI1145 + */ + //virtual ~SI1145(); + /** Initialize SI1145 sensor + * Configure sensor setting and read parameters for calibration + */ + void initalize(void); + /** Begin Initialization SI1145 sensor + * Configure sensor setting and read parameters for calibration + */ + float getUV(void); + /** Read the current VIS value from SI1145 sensor + */ + float getVIS(void); + float getUVlsb(void); + float getUVmsb(void); + /** Read the current IR value from SI1145 sensor + */ + float getIR(void); + /** Read the current PROX value from SI1145 sensor + */ + float getPROX(void); + +private: + + I2C *i2c_p; + I2C &i2c; + char address; + int32_t t_fine; +}; +