ESP32-PaxCounter/include
Tom 67b4492220
Update rtctime.h
As mentioned by Makuna of RTC library
2023-07-02 18:13:07 +02:00
..
antenna.h Code Sanitization 2018-10-14 13:26:23 +02:00
bmesensor.h cleanup #ifdefs in .h files 2022-02-22 13:11:46 +01:00
boot.h reset.h: RTC_runmode code sanitization 2021-03-20 21:31:04 +01:00
button.h new button lib 2022-11-06 15:00:54 +01:00
configmanager.h configmanager: small fixes / rework 2021-12-27 21:03:41 +01:00
cyclic.h new button lib 2022-11-06 15:00:54 +01:00
dcf77.h cleanup #ifdefs in .h files 2022-02-22 13:11:46 +01:00
display.h revert faulty merge 2022-11-13 22:25:48 +01:00
globals.h Update globals.h 2023-07-02 18:12:11 +02:00
gpsread.h fix RTC lib bug 2023-06-25 15:08:02 +02:00
hash.h cleanup IRAM_ATTR 2022-02-26 17:26:14 +01:00
i2c.h Merge branch 'master' into S3-usb-stick 2022-10-29 19:05:18 +02:00
if482.h cleanup #ifdefs in .h files 2022-02-22 13:11:46 +01:00
irqhandler.h new button lib 2022-11-06 15:00:54 +01:00
led.h fix color control 2022-10-31 18:44:04 +01:00
ledmatrixdisplay.h fix ledmatrixdisplay compile error 2022-11-01 20:47:39 +01:00
ledmatrixfonts.h LED matrix display improvements 2019-05-31 13:20:11 +02:00
libpax_helpers.h sanitze libpax integration (volatile vars removed) 2022-02-13 16:00:01 +01:00
lorawan.h reset.cpp lora code sanitization 2022-11-20 17:17:07 +01:00
main.h fix missing includes 2022-11-06 14:59:56 +01:00
mqttclient.h cleanup #ifdefs in .h files 2022-02-22 13:11:46 +01:00
ota.h maintenance mode (experimental) 2021-03-04 21:22:49 +01:00
payload.h fix missing includes 2022-11-06 14:59:56 +01:00
power.h fix missing includes 2022-11-06 14:59:56 +01:00
rcommand.h fix missing includes 2022-11-06 14:59:56 +01:00
readme.txt Code Sanitization 2018-10-14 13:26:23 +02:00
reset.h reset.cpp/.h code sanitizations 2023-03-12 00:31:55 +01:00
rtctime.h Update rtctime.h 2023-07-02 18:13:07 +02:00
sdcard.h sdcard add generic slotconfig 2022-10-31 16:19:56 +01:00
sds011read.h cleanup #ifdefs in .h files 2022-02-22 13:11:46 +01:00
senddata.h code sanitizations 2023-03-05 15:35:59 +01:00
sensor.h code sanitization (decentralized several vars, 2) 2021-03-31 21:43:51 +02:00
spislave.h cleanup #ifdefs in .h files 2022-02-22 13:11:46 +01:00
timekeeper.h fix show sleep time & show syncwakeup 2023-03-11 17:17:55 +01:00
timesync.h cleanup IRAM_ATTR 2022-02-26 17:26:14 +01:00

readme.txt

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