9 lines
174 B
C
9 lines
174 B
C
|
|
#ifndef BME280_H
|
||
|
|
#define BME280_H
|
||
|
|
|
||
|
|
// Function prototypes
|
||
|
|
void BME280_init();
|
||
|
|
void BME280_readData(int32* temperature, int32* humidity, int32* pressure);
|
||
|
|
|
||
|
|
#endif // BME280_H
|