14 lines
260 B
C
14 lines
260 B
C
//
|
|
// Created by dell on 24-9-26.
|
|
//
|
|
|
|
#ifndef MLX90614_H
|
|
#define MLX90614_H
|
|
|
|
#define I2C_EVENT_MASTER_MODE_SELECT ((uint32_t)(I2C_FLAG_I2CBSY | I2C_FLAG_MASTER | I2C_FLAG_RBNE))
|
|
|
|
void i2c_config(void);
|
|
int read_ir_mlx90614(void);
|
|
|
|
#endif //MLX90614_H
|