Difference between revisions of "IoT - Modular - Externs.h"
Jump to navigation
Jump to search
(Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef EXTERNS_H #define EXTERNS_H #ifdef d_Pixels extern int RED[]; extern int GRN[]; extern int BLU[]; extern int BLK[]; extern int...") |
(No difference)
|
Latest revision as of 15:21, 30 April 2021
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