OpenDTU/include
Thomas Basler d5f32d8325 Fixes (#8). Power values on CH0 are published twice
The larger value was DC the smaller one AC. Now the values are published to different topics
2022-07-01 18:36:43 +02:00
..
Configuration.h Adjust config 2022-06-22 21:00:44 +02:00
defaults.h Fix default DTU serial number 2022-06-22 20:59:13 +02:00
helper.h Implemented WebAPI to set wifi credentials 2022-04-17 21:40:47 +02:00
MqttPublishing.h Fixes (#8). Power values on CH0 are published twice 2022-07-01 18:36:43 +02:00
MqttSettings.h First version of mqtt connection handling 2022-04-21 23:15:45 +02:00
NtpSettings.h Implemented first readonly version of ntp settings 2022-04-17 23:13:36 +02:00
README Initial commit 2022-04-09 11:05:14 +02:00
WebApi_dtu.h Separated WebApi into different files 2022-06-15 23:46:22 +02:00
WebApi_firmware.h Separated WebApi into different files 2022-06-15 23:46:22 +02:00
WebApi_inverter.h Separated WebApi into different files 2022-06-15 23:46:22 +02:00
WebApi_mqtt.h Separated WebApi into different files 2022-06-15 23:46:22 +02:00
WebApi_network.h Separated WebApi into different files 2022-06-15 23:46:22 +02:00
WebApi_ntp.h Separated WebApi into different files 2022-06-15 23:46:22 +02:00
WebApi_sysstatus.h Separated WebApi into different files 2022-06-15 23:46:22 +02:00
WebApi_webapp.h Separated WebApi into different files 2022-06-15 23:46:22 +02:00
WebApi_ws_live.h Improoved websocket handling 2022-06-17 13:29:21 +02:00
WebApi.h First version of very simple websocket api 2022-06-16 01:44:42 +02:00
WiFiSettings.h Fixed [E][WiFiUdp.cpp:160] endPacket(): could not send data: 22 error 2022-04-17 22:07:08 +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