13 lines
274 B
C
13 lines
274 B
C
|
|
#ifndef MAIN_H
|
||
|
|
#define MAIN_H
|
||
|
|
|
||
|
|
// Function prototypes
|
||
|
|
void init_sensors();
|
||
|
|
void read_sensor_data();
|
||
|
|
void main_loop();
|
||
|
|
|
||
|
|
extern uint8 zcl_temp_humidity_data[6]; // For BME280 data
|
||
|
|
extern uint8 zcl_wind_data[2]; // For wind data (speed, direction)
|
||
|
|
|
||
|
|
#endif // MAIN_H
|