OpenDTU-old/include
2023-11-23 22:35:05 +01:00
..
Configuration.h Feature: Implement offset cache for "YieldDay" 2023-11-22 20:21:25 +01:00
Datastore.h Migrate Datastore to TaskScheduler 2023-11-23 22:35:05 +01:00
defaults.h Feature: Allow configuration of LWT QoS 2023-11-19 16:17:10 +01:00
Display_Graphic.h Feature: Turn off Display before reboot 2023-08-25 16:57:24 +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
InverterSettings.h Remove SUNPOS_UPDATE_INTERVAL define and introduce INVERTER_UPDATE_SETTINGS_INTERVAL. 2023-10-06 11:13:09 +02:00
Led_Single.h Remove not required enum 2023-11-18 22:35:58 +01:00
MessageOutput.h Fix: Virtual console scrambled output when the output came from different contexts 2023-08-03 22:16:29 +02:00
MqttHandleDtu.h Initialize variables before first usage 2023-09-18 20:23:00 +02:00
MqttHandleHass.h Migrate MqttHandleHass to TaskScheduler 2023-11-23 22:35:05 +01:00
MqttHandleInverter.h Initialize variables before first usage 2023-09-18 20:23:00 +02:00
MqttHandleInverterTotal.h Migrate MqttHandleInverterTotal to TaskSchedule 2023-11-23 22:35:05 +01:00
MqttSettings.h Fix: Prevent access to nullptr object when reconnecting to mqtt 2023-08-03 18:46:28 +02:00
NetworkSettings.h Implemented mDNS 2023-10-30 20:53:45 +01:00
NtpSettings.h Cleanup includes 2022-12-14 22:13:03 +01:00
PinMapping.h Introduce gpio2 for the CMT2300A module 2023-04-15 10:55:48 +02:00
README Initial commit 2022-04-09 11:05:14 +02:00
Scheduler.h Initialize TaskScheduler 2023-11-23 22:35:05 +01:00
SunPosition.h Migrate SunPosition to TaskScheduler 2023-11-23 22:35:05 +01:00
Utils.h Move different restart calls into one method 2023-08-25 12:58:53 +02:00
WebApi_config.h webapp: Allow download of individual config files 2023-01-05 01:44:38 +01:00
WebApi_device.h Added Device Profiles 2023-01-16 21:09:24 +01: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_errors.h Feature: Allow configuration of LWT QoS 2023-11-19 16:17:10 +01: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_gridprofile.h Feature: First very basic support to read the grid profile 2023-09-07 22:08:07 +02:00
WebApi_inverter.h Feature: Allow reordering of the inverters in the live view 2023-05-29 20:17:07 +02:00
WebApi_limit.h Added web api to set limit 2022-09-30 18:34:30 +02:00
WebApi_maintenance.h Added device reboot functionality 2022-11-21 23:29:57 +01:00
WebApi_mqtt.h src/WebApi_mqtt.cpp: rename function getRootCaCertInfo 2023-04-12 08:47:24 +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_prometheus.h Prometheus Endpoint: Simplify code by looping over fields instead of duplicated code 2023-08-22 13:00:52 +02:00
WebApi_security.h Introduce configuration option to decide wether the web ui is accessable without password or not 2022-11-22 23:32:52 +01: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_console.h Added websocket for debug output 2022-12-19 21:38:39 +01:00
WebApi_ws_live.h Fix: Workaround: Don't allow memory intensive web functions in parallel 2023-09-02 01:41:53 +02:00
WebApi.h Feature: First very basic support to read the grid profile 2023-09-07 22:08:07 +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