OpenDTU/include
2022-10-04 18:48:21 +02:00
..
Configuration.h Option for expire_after 2022-08-31 23:35:28 +02:00
defaults.h Option for expire_after 2022-08-31 23:35:28 +02:00
helper.h Change License to GPLv2 as the RF24 lib uses GPL-2.0-only 2022-07-15 18:05:58 +02:00
MqttHassPublishing.h Added reactive power output and display 2022-08-10 20:40:26 +02:00
MqttPublishing.h Added reactive power output and display 2022-08-10 20:40:26 +02:00
MqttSettings.h Implement callback to subscribe to topics 2022-09-30 18:34:30 +02:00
NetworkSettings.h Use uint32_t, rather than the C type unsigned long 2022-09-13 22:39:08 +02:00
NtpSettings.h Change License to GPLv2 as the RF24 lib uses GPL-2.0-only 2022-07-15 18:05:58 +02:00
README Initial commit 2022-04-09 11:05:14 +02:00
WebApi_config.h Added webapi endpoints to download/upload end delete configuration 2022-09-17 01:46:14 +02:00
WebApi_devinfo.h Added small dialog to show inverter info (firmware version etc.) 2022-08-11 16:42:50 +02:00
WebApi_dtu.h Change License to GPLv2 as the RF24 lib uses GPL-2.0-only 2022-07-15 18:05:58 +02:00
WebApi_eventlog.h Change License to GPLv2 as the RF24 lib uses GPL-2.0-only 2022-07-15 18:05:58 +02:00
WebApi_firmware.h Change License to GPLv2 as the RF24 lib uses GPL-2.0-only 2022-07-15 18:05:58 +02:00
WebApi_inverter.h Change License to GPLv2 as the RF24 lib uses GPL-2.0-only 2022-07-15 18:05:58 +02:00
WebApi_limit.h Added web api to set limit 2022-09-30 18:34:30 +02:00
WebApi_mqtt.h Code hardening: introduce const keyword 2022-09-05 21:41:45 +02:00
WebApi_network.h Change License to GPLv2 as the RF24 lib uses GPL-2.0-only 2022-07-15 18:05:58 +02:00
WebApi_ntp.h Added API to set and get the current time 2022-09-20 19:44:24 +02:00
WebApi_power.h Implemented WebAPI to get status of last power command 2022-10-04 18:48:21 +02:00
WebApi_sysstatus.h Change License to GPLv2 as the RF24 lib uses GPL-2.0-only 2022-07-15 18:05:58 +02:00
WebApi_webapp.h Change License to GPLv2 as the RF24 lib uses GPL-2.0-only 2022-07-15 18:05:58 +02:00
WebApi_ws_live.h Use uint32_t, rather than the C type unsigned long 2022-09-13 22:39:08 +02:00
WebApi.h Added WebAPI to control inverter power 2022-10-04 18:12:55 +02: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