Skip to content

Commit

Permalink
Merge pull request #166 from softwarecrash/library-update
Browse files Browse the repository at this point in the history
Library update
  • Loading branch information
softwarecrash authored Oct 21, 2024
2 parents c468947 + d06c68f commit abc76de
Show file tree
Hide file tree
Showing 10 changed files with 815 additions and 69 deletions.
Binary file not shown.
Binary file not shown.
9 changes: 5 additions & 4 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
platform = [email protected]
framework = arduino
monitor_speed = 115200
custom_prog_version = 1.2.0-Pre4
custom_prog_version = 1.2.0-Pre4A6
build_flags =
-DVERSION=${this.custom_prog_version}
-DPIO_SRC_NAM="Solar2MQTT"
Expand All @@ -22,14 +22,15 @@ extra_scripts = pre:tools/mini_html.py
pre:tools/pre_compile.py
post:tools/post_compile.py
lib_deps =
bblanchon/ArduinoJson @ ^6.21.2
;bblanchon/ArduinoJson @ ^6.21.2
bblanchon/ArduinoJson @ ^7.2.0
esphome/ESPAsyncTCP-esphome @ 2.0.0
mathieucarbou/ESPAsyncWebServer @ 3.3.7
mathieucarbou/ESPAsyncWebServer @ ^3.3.16
mathieucarbou/WebSerialLite@^6.2.0
alanswx/ESPAsyncWiFiManager @ ^0.31.0
plerup/EspSoftwareSerial @ ^8.2.0
https://github.com/dok-net/ghostl
robtillaart/CRC@^1.0.1
robtillaart/CRC@^1.0.3
4-20ma/ModbusMaster@^2.0.1
paulstoffregen/OneWire@^2.3.7
milesburton/DallasTemperature@^3.11.0
Expand Down
2 changes: 1 addition & 1 deletion src/PI_Serial/PI_Serial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ bool PI_Serial::isModbus()

bool PI_Serial::checkQFLAG(const String& flags, char symbol) {
bool enabled = false;
for (int i = 0; i < flags.length(); i++) {
for (unsigned int i = 0; i < flags.length(); i++) {
char c = flags.charAt(i);
if (c == 'E') enabled = true;
else if (c == 'D') enabled = false;
Expand Down
Loading

0 comments on commit abc76de

Please sign in to comment.