ESP32-PaxCounter/include
2020-02-28 16:04:22 +01:00
..
antenna.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 fix bluetooth includes (issue #249) 2019-01-20 15:53:31 +01:00
bmesensor.h externalized Bosch BSEC library 2020-01-28 21:49:24 +01:00
button.h button handling improvment 2019-05-03 20:24:42 +02:00
coexist_internal.h Undo merge 2019-01-19 19:54:54 +01:00
configmanager.h configmanager bitmask display 2019-03-17 22:00:02 +01:00
cyclic.h Update cyclic.h 2020-02-03 15:23:13 +01:00
dcf77.h DCF77 code sanitization 2019-02-23 20:28:11 +01:00
display.h auto page flip mode 2020-01-20 11:41:31 +01:00
globals.h externalized Bosch BSEC library 2020-01-28 21:49:24 +01:00
gpsread.h gps fix detection enhanced 2020-01-03 09:59:10 +01:00
hash.h Code Sanitization 2018-10-14 13:26:23 +02:00
i2c.h i2c functions moved from power.cpp to i2c.cpp 2019-12-21 14:27:33 +01:00
if482.h if482 correction factor fixed 2019-07-24 20:51:17 +02:00
irqhandler.h T-Beam V10 (AXP192 PMU) enhanced power functions 2019-09-09 21:45:19 +02:00
led.h secondary LED added 2019-03-24 01:05:13 +01:00
ledmatrixdisplay.h LEDmatrixdisplay.cpp/.h rename scrollfunction 2019-09-30 19:44:49 +02:00
ledmatrixfonts.h LED matrix display improvements 2019-05-31 13:20:11 +02:00
lorawan.h removed static at some functions 2019-12-25 23:21:31 +01:00
macsniff.h Undo merge 2019-01-19 19:54:54 +01:00
main.h added new reset logic; deep sleep fixes 2019-10-20 20:05:13 +02:00
mallocator.h Undo merge 2019-01-19 19:54:54 +01:00
mobaserial.h MOBASERIAL added 2019-03-27 19:36:47 +01:00
ota.h removed static at some functions 2019-12-25 23:21:31 +01:00
payload.h Cayenne: added constant for PM-values 2020-02-28 16:04:22 +01:00
power.h i2c functions moved from power.cpp to i2c.cpp 2019-12-21 14:27:33 +01:00
rcommand.h new feature: rcmd 0x17 wifi sniffer on/off 2019-11-11 12:28:31 +01:00
readme.txt Code Sanitization 2018-10-14 13:26:23 +02:00
reset.h deep sleep fixes 2019-10-20 20:47:03 +02:00
rtctime.h i2c locking for rtc & timesync streamlined 2019-07-29 14:43:37 +02:00
sdcard.h Update sdcard.h 2020-02-03 15:22:33 +01:00
sds011read.h sds011 code sanitizations 2020-02-05 22:13:30 +01:00
senddata.h added support for SDS011 2020-01-22 15:43:13 +01:00
sensor.h sensor init 2018-11-20 16:48:35 +01:00
spislave.h spislave.h: bugfix missing TaskHandle declaration 2020-01-28 21:42:37 +01:00
timekeeper.h timekeeper/timesync: fixed dependencies 2019-08-13 22:40:33 +02:00
timesync.h randomize time sync seq nr 2019-10-05 15:03:15 +02:00
vendor_array.h Update vendor_array.h with new vendor codes 2019-08-07 20:10:37 +02:00
wifiscan.h removed static at some functions 2019-12-25 23:21:31 +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