ESP32-PaxCounter/include
2022-01-30 21:53:11 +01:00
..
antenna.h Code Sanitization 2018-10-14 13:26:23 +02:00
bmesensor.h BOSCH BSEC upgrade tp 1.4.80 2020-11-21 20:38:17 +01:00
boot.h reset.h: RTC_runmode code sanitization 2021-03-20 21:31:04 +01:00
button.h #include cleanup 2020-03-29 18:08:52 +02:00
configmanager.h configmanager: small fixes / rework 2021-12-27 21:03:41 +01:00
cyclic.h libpax includes code sanitizations 2021-05-08 14:25:14 +02:00
dcf77.h rework dcf77 (part 2) 2022-01-18 01:00:40 +01:00
display.h remove unused ENS/CWA code 2022-01-28 22:17:17 +01:00
globals.h remove unused ENS/CWA code 2022-01-28 22:17:17 +01:00
gpsread.h removal of all time libs (inital commit) 2022-01-13 23:30:18 +01:00
hash.h maintenance mode (experimental) 2021-03-04 21:22:49 +01:00
i2c.h code sanitization (decentralized several vars, 2) 2021-03-31 21:43:51 +02:00
if482.h integrate esp32 sntp 2022-01-23 21:12:28 +01:00
irqhandler.h code sanitization (decentralized several vars, 2) 2021-03-31 21:43:51 +02:00
led.h enhanced RGB LED control for M5fire 2020-04-06 11:53:55 +02:00
ledmatrixdisplay.h code sanitization (decentralized several vars, 2) 2021-03-31 21:43:51 +02:00
ledmatrixfonts.h LED matrix display improvements 2019-05-31 13:20:11 +02:00
libpax_helpers.h libpax includes code sanitizations 2021-05-08 14:25:14 +02:00
lorawan.h implement send battery status via lmic 2021-10-11 09:59:41 +02:00
main.h remove unused ENS/CWA code 2022-01-28 22:17:17 +01:00
mqttclient.h maintenance mode (experimental) 2021-03-04 21:22:49 +01:00
ota.h maintenance mode (experimental) 2021-03-04 21:22:49 +01:00
payload.h remove beacon monitormode 2021-05-07 19:41:36 +02:00
power.h power.h: fix missing include for ADC GPIOs 2021-12-24 16:52:33 +01:00
rcommand.h integrate esp32 sntp 2022-01-23 21:12:28 +01:00
readme.txt Code Sanitization 2018-10-14 13:26:23 +02:00
reset.h reset.h: add missing forward declaration sds011 2022-01-29 13:49:12 +01:00
rtctime.h improve RTC accuracy 2022-01-26 16:21:44 +01:00
sdcard.h sdcard bugfixes 2022-01-30 21:53:11 +01:00
sds011read.h #include cleanup 2020-03-29 18:08:52 +02:00
senddata.h remove unused ENS/CWA code 2022-01-28 22:17:17 +01:00
sensor.h code sanitization (decentralized several vars, 2) 2021-03-31 21:43:51 +02:00
spislave.h add spi deinit for sleep 2020-12-23 16:30:25 +01:00
timekeeper.h improve RTC accuracy 2022-01-26 16:21:44 +01:00
timesync.h removal of all time libs (inital commit) 2022-01-13 23:30:18 +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