ESP32-PaxCounter/include
2021-03-27 18:52:39 +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 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 reset logic fixed (initialize RTC vars after OTA) 2021-03-21 20:20:39 +01:00
corona.h CWA code edits 2020-09-03 16:37:51 +02:00
cyclic.h Reenable BLE Wifi switching for libpax 2021-03-22 15:44:41 +01:00
dcf77.h DCF77 code sanitization 2019-02-23 20:28:11 +01:00
display.h fix #issue668 2020-11-01 13:45:17 +01:00
globals.h change sleepcycle to 16bit * 10 2021-03-27 18:52:39 +01:00
gpsread.h gpsread code sanitizations 2020-03-11 23:47:33 +01:00
hash.h maintenance mode (experimental) 2021-03-04 21:22:49 +01:00
i2c.h v2.3.0 2021-01-30 17:54:34 +01:00
if482.h if482 correction factor fixed 2019-07-24 20:51:17 +02:00
irqhandler.h fix bitshift in irq mask 2021-01-09 23:52:29 +01:00
led.h enhanced RGB LED control for M5fire 2020-04-06 11:53:55 +02:00
ledmatrixdisplay.h #include cleanup 2020-03-29 18:08:52 +02:00
ledmatrixfonts.h LED matrix display improvements 2019-05-31 13:20:11 +02:00
libpax_helpers.h Tryout for on demand switching between BLE and Wifi counting in libpax 2021-03-22 15:39:46 +01:00
lorawan.h new feature deep sleep (wokring alpha) 2020-12-09 10:15:12 +01:00
macsniff.h hash&salt code simplified 2020-12-28 16:12:00 +01:00
main.h maintenance mode (experimental) 2021-03-04 21:22:49 +01: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
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 restart counter added 2021-03-21 21:12:31 +01:00
power.h enable battery monitoring on HeltecV2 2021-02-13 15:58:56 +01:00
rcommand.h repair broken rcommand processing 2021-01-07 10:37:55 +01:00
readme.txt Code Sanitization 2018-10-14 13:26:23 +02:00
reset.h reset logic fixed (initialize RTC vars after OTA) 2021-03-21 20:20:39 +01:00
rtctime.h #include cleanup 2020-03-29 18:08:52 +02:00
sdcard.h SDMMC fix (PR #665, activating pullups) 2020-10-31 12:05:26 +01:00
sds011read.h #include cleanup 2020-03-29 18:08:52 +02:00
senddata.h Reenable BLE Wifi switching for libpax 2021-03-22 15:44:41 +01:00
sensor.h HAS_SENSOR defines sanitization 2020-11-02 18:44:06 +01:00
spislave.h add spi deinit for sleep 2020-12-23 16:30:25 +01:00
timekeeper.h some function renames for better code readability 2020-10-04 14:29:57 +02:00
timesync.h timesync code sanitziations 2020-03-11 23:49:06 +01:00
wifiscan.h channel hopping switch on/off option 2020-12-10 22:12:57 +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