IoT - Modular - Externs.h

From The TinkerNet Wiki
Jump to navigation Jump to search
 1 #ifndef EXTERNS_H
 2 #define EXTERNS_H
 3 
 4 #ifdef d_Pixels
 5 
 6 extern int RED[];
 7 extern int GRN[];
 8 extern int BLU[];
 9 extern int BLK[];
10 extern int YEL[];
11 extern int PixelCount;
12 
13 #endif // d_Pixels
14 
15 #ifdef s_CLIMATE
16 
17 // extern struct BME280_Readings BME280_Datum;
18 
19 #endif // s_BME280
20 
21 #ifdef s_CLIMATE
22 
23 // extern struct BMP180_Readings BMP180_Datum;
24 
25 #endif // s_BMP180
26 
27 extern struct CLIMATE_Readings CLIMATE_Datum;
28 
29 extern float Pressure_Correction;
30 
31 #endif // EXTERNS_H