OpenDTU/lib
Thomas Basler a0e6942537 Feature: Detect if inverter supports 'Power Distribution Logic'
The detection of 'Power Distribution Logic' is based on the firmware version for specific models and is needed to disable any means of overscaling, as it simply does not work when 'Power Distrbution Logic' is available.

Based on the code from @AndreasBoehm
2024-12-31 16:08:37 +01:00
..
CMT2300a Only use a single SPI device for CMT 2024-09-25 00:37:06 +02:00
CpuTemperature/src Fix: Remove temperature readings for ESP32-S2 modules 2024-12-14 12:36:50 +01:00
Every Fix compilation warning 2022-07-01 17:46:51 +02:00
Frozen Add libfrozen to project to create constexpr maps 2023-12-10 14:57:05 +01:00
Hoymiles Feature: Detect if inverter supports 'Power Distribution Logic' 2024-12-31 16:08:37 +01:00
MqttSubscribeParser Introduce MqttSubscribeParser and moved inverter specific subscribes to MqttHandleInverterClass 2022-12-14 20:42:23 +01:00
ResetReason/src Add const keyword to method parameters 2023-12-12 00:21:14 +01:00
SpiManager Hotfix to not use DMA on SPI3 of ESP32-S2 2024-10-10 02:06:51 +02:00
ThreadSafeQueue Feature: New handling of command queue 2024-12-15 20:45:32 +01:00
TimeoutHelper Move source files for TimeoutHelper to correct directories 2024-04-01 00:00:36 +02:00
README Initial commit 2022-04-09 11:05:14 +02:00

This directory is intended for project specific (private) libraries.
PlatformIO will compile them to static libraries and link into executable file.

The source code of each library should be placed in a an own separate directory
("lib/your_library_name/[here are source files]").

For example, see a structure of the following two libraries `Foo` and `Bar`:

|--lib
|  |
|  |--Bar
|  |  |--docs
|  |  |--examples
|  |  |--src
|  |     |- Bar.c
|  |     |- Bar.h
|  |  |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html
|  |
|  |--Foo
|  |  |- Foo.c
|  |  |- Foo.h
|  |
|  |- README --> THIS FILE
|
|- platformio.ini
|--src
   |- main.c

and a contents of `src/main.c`:
```
#include <Foo.h>
#include <Bar.h>

int main (void)
{
  ...
}

```

PlatformIO Library Dependency Finder will find automatically dependent
libraries scanning project source files.

More information about PlatformIO Library Dependency Finder
- https://docs.platformio.org/page/librarymanager/ldf.html