SCH MME sensor test

Dependencies:   mbed Adafruit_GFX

mlx90615.h

Committer:
shinshingo
Date:
2019-11-06
Revision:
1:bbf8b08b8a20
Parent:
0:28c89a4b6b69

File content as of revision 1:bbf8b08b8a20:

#include "mbed.h"


class MLX90615{

    public:
        MLX90615(I2C* i2c,int addr=0xB6);
        bool getTemp(float* temp_val);
        bool getTempAmbient(float* temp_val);
        bool getRawIR(int16_t* ir_val);
        
    private:
       I2C* i2c;
       int i2caddress;

};