ESP32-PaxCounter/include
2019-01-19 17:53:21 +01:00
..
antenna.h Code Sanitization 2018-10-14 13:26:23 +02:00
battery.h Code Sanitization 2018-10-14 13:26:23 +02:00
beacon_array.h Code Sanitization 2018-10-14 13:26:23 +02:00
blescan.h Code Sanitization 2018-10-14 13:26:23 +02:00
bme680mems.h BME680 bugfixes 2018-12-31 15:46:52 +01:00
button.h Code Sanitization 2018-10-14 13:26:23 +02:00
coexist_internal.h v1.6.991 2018-12-09 13:48:03 +01:00
configmanager.h Code Sanitization 2018-10-14 13:26:23 +02:00
cyclic.h Feature RTC support added (experimental) 2019-01-19 17:53:21 +01:00
display.h v1.7.01 (PSRAM support, timesync off) 2018-12-22 14:37:47 +01:00
globals.h globals.h: fixed wrong include Mallocator.h 2019-01-14 14:59:44 +01:00
gpsread.h Bosch BSEC integration completed 2018-11-25 16:05:30 +01:00
hash.h Code Sanitization 2018-10-14 13:26:23 +02:00
irqhandler.h payload decoder reworked for BME680 support 2018-11-18 15:50:57 +01:00
led.h ota.cpp restructured; .h file sanitization 2018-11-04 19:25:11 +01:00
lorawan.h Feature RTC support added (experimental) 2019-01-19 17:53:21 +01:00
macsniff.h v1.7.01 (PSRAM support, timesync off) 2018-12-22 14:37:47 +01:00
main.h v1.6.991 2018-12-09 13:48:03 +01:00
mallocator.h v1.7.01 (PSRAM support, timesync off) 2018-12-22 14:37:47 +01:00
ota.h created: usersensor, bme680 bsec, update arduino-esp32 core 2018-11-20 15:02:37 +01:00
payload.h change default to bluetooth disabled 2018-12-02 14:08:50 +01:00
rcommand.h v1.7.01 (PSRAM support, timesync off) 2018-12-22 14:37:47 +01:00
readme.txt Code Sanitization 2018-10-14 13:26:23 +02:00
rtc.h Feature RTC support added (experimental) 2019-01-19 17:53:21 +01:00
senddata.h payload decoder reworked for BME680 support 2018-11-18 15:50:57 +01:00
sensor.h sensor init 2018-11-20 16:48:35 +01:00
spislave.h bugfix payload port 2018-11-17 22:49:14 +01:00
vendor_array.h Code Sanitization 2018-10-14 13:26:23 +02:00
wifiscan.h change default to bluetooth disabled 2018-12-02 14:08:50 +01:00

This directory is intended for project header files.

A header file is a file containing C declarations and macro definitions
to be shared between several project source files. You request the use of a
header file in your project source file (C, C++, etc) located in `src` folder
by including it, with the C preprocessing directive `#include'.

```src/main.c

#include "header.h"

int main (void)
{
 ...
}
```

Including a header file produces the same results as copying the header file
into each source file that needs it. Such copying would be time-consuming
and error-prone. With a header file, the related declarations appear
in only one place. If they need to be changed, they can be changed in one
place, and programs that include the header file will automatically use the
new version when next recompiled. The header file eliminates the labor of
finding and changing all the copies as well as the risk that a failure to
find one copy will result in inconsistencies within a program.

In C, the usual convention is to give header files names that end with `.h'.
It is most portable to use only letters, digits, dashes, and underscores in
header file names, and at most one dot.

Read more about using header files in official GCC documentation:

* Include Syntax
* Include Operation
* Once-Only Headers
* Computed Includes

https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html