12345678910111213141516171819 |
- #pragma once
- #ifndef _SENSOR_H
- #define _SENSOR_H
- #include "main.h"
- /* Variables */
- struct bme280_dev SensorDev;
- struct bme280_data SensorData;
- int8_t Humidity, Temperature;
- uint16_t Pressure;
- /* Functions prototypes */
- void sensor_Init(void);
- void sensor_StartMeasure(void);
- void sensor_GetData(void);
- #endif /* _SENSOR_H */
|