Malexis 90640 sensor

Dependencies:   mbed

Committer:
withboobs
Date:
Tue Mar 27 13:34:11 2018 +0000
Revision:
0:99e98f131071
Child:
1:3f763d28c1be
nothing to say

Who changed what in which revision?

UserRevisionLine numberNew contents of line
withboobs 0:99e98f131071 1 #ifndef _MLX90640_I2C_Driver_H_
withboobs 0:99e98f131071 2 #define _MLX90640_I2C_Driver_H_
withboobs 0:99e98f131071 3
withboobs 0:99e98f131071 4 #include <stdint.h>
withboobs 0:99e98f131071 5
withboobs 0:99e98f131071 6 void MLX90640_I2CInit(void);
withboobs 0:99e98f131071 7 int MLX90640_I2CRead(uint8_t slaveAddr,unsigned int startAddress, unsigned int nWordsRead, uint16_t *data);
withboobs 0:99e98f131071 8 int MLX90640_I2CWrite(uint8_t slaveAddr,unsigned int writeAddress, uint16_t data);
withboobs 0:99e98f131071 9 void MLX90640_I2CFreqSet(int freq);
withboobs 0:99e98f131071 10 #endif