Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: DPL: ensure inverter reaches requested state #708

Merged

Conversation

schlimmchen
Copy link
Collaborator

we previously only called commitPowerLimit() if the desired limit changed such that the change was bigger than the hysteresis. we found that if the limit update was not received and the desired limit would not change much, the limit of the inverter was wrong for a long time.

to mitigate this, we introduced re-sending the limit update every 60 seconds, regardless of what the limit reported by the inverter was at that time.

if the power-up command was not received, we also would repeat it only once every 60 seconds.

this leads to a new kind of staleness and the actual inverter state was still not matching the desired state.

this new approach effectively adds an additional control loop at the start of the DPL loop(). that new function compares the requested inverter state to the actual reported state. it sends updates (limit update or power on state) until the desired inverter state is reached, or until a (hard-coded) timeout occurs.

this approach also allows us to send power-up, power-down, and limit update commands independent from one another and in a particular order.

this should make sure that the inverter is in the desired state even if conditions change slowly and commands were not received as expected.

we previously only called commitPowerLimit() if the desired limit
changed such that the change was bigger than the hysteresis. we found
that if the limit update was not received and the desired limit would
not change much, the limit of the inverter was wrong for a long time.

to mitigate this, we introduced re-sending the limit update every 60
seconds, regardless of what the limit reported by the inverter was at
that time.

if the power-up command was not received, we also would repeat it only
once every 60 seconds.

this leads to a new kind of staleness and the actual inverter state was
still not matching the desired state.

this new approach effectively adds an additional control loop at the
start of the DPL loop(). that new function compares the requested
inverter state to the actual reported state. it sends updates (limit
update or power on state) until the desired inverter state is reached,
or until a (hard-coded) timeout occurs.

this approach also allows us to send power-up, power-down, and limit
update commands independent from one another and in a particular order.

this should make sure that the inverter is in the desired state even if
conditions change slowly and commands were not received as expected.
schlimmchen referenced this pull request in schlimmchen/OpenDTU-OnBattery Mar 3, 2024
@schlimmchen
Copy link
Collaborator Author

@chrisli01 Schau mal hier: https://github.com/helgeerbe/OpenDTU-OnBattery/actions/runs/8132571854?pr=708 Es wäre schön, wenn du das passende Artefakt dieses Pull-Request-Builds einmal auf deine Anlage spielen würdest und hoffentlich bestätigen kannst, dass du deinen Wechselrichter nun nicht mehr im Standby erwischst. Jedenfalls nicht für länger. Die Änderungen in diesem PR sollten sicherstellen, dass der Wechselrichter den gewünschten Zustand tatsächlich erreicht, egal wie oft ein Kommando an ihn verloren geht. Erst dann gibt es den nächsten DPL-Durchlauf.

@schlimmchen
Copy link
Collaborator Author

@dk7td und @spcqike Ihr wart doch auch schwer beteiligt in der Diskussion #651, hättet ihr Lust zu testen? In meiner Anlage läuft diese Implementierung seit gesten Abend scheinbar sehr gut.

@spcqike
Copy link

spcqike commented Mar 3, 2024

Gern.

Mein wechselrichter sollte zwar nie stoppen, ich habe ja nur einen, aber schaden kann es ja auch nicht 😄

eine Frage: woran erkenne ich bei solchen PR-Versionen, ob ich tatsächlich die richtige installiert habe?
ist das hier richtig?
IMG_5554

@dk7td
Copy link

dk7td commented Mar 3, 2024

@dk7td und @spcqike Ihr wart doch auch schwer beteiligt in der Diskussion #651, hättet ihr Lust zu testen? In meiner Anlage läuft diese Implementierung seit gesten Abend scheinbar sehr gut.

Hi! Kann mich gerne beteiligen, wobei ich die Probleme nicht hatte bei mir. Von daher ist die Frage, ob das hilfreich ist.
Aktuell scheint der Merge ja noch zu fehlen?

@schlimmchen
Copy link
Collaborator Author

schlimmchen commented Mar 3, 2024

@dk7td Auch wenn du keine Probleme hattest, ist es sehr hilfreich zu wissen, dass du auch mit diesen Änderungen keine Probleme hast 😊

Dieser Pull-Request ist noch nicht im development branch enthalten und dementsprechend auch noch nicht released. Daher habe ich den Link https://github.com/helgeerbe/OpenDTU-OnBattery/actions/runs/8132571854?pr=708 oben eingefügt: Der führt zu den Artefakten, die aus dem Bau dieses PR entstehen, da sind diese Änderungen also drin. Überprüfen kannst du das nach einem Firmware-Update unter Info->System in der WebApp, da steht dann "v24.2.16-12-g8b6e57c" "g0a5073d".

@dk7td
Copy link

dk7td commented Mar 3, 2024

@dk7td Auch wenn du keine Probleme hattest, ist es sehr hilfreich zu wissen, dass du auch mit diesen Änderungen keine Probleme hast 😊

Dieser Pull-Request ist noch nicht im development branch enthalten und dementsprechend auch noch nicht released. Daher habe ich den Link https://github.com/helgeerbe/OpenDTU-OnBattery/actions/runs/8132571854?pr=708 oben eingefügt: Der führt zu den Artefakten, die aus dem Bau dieses PR entstehen, da sind diese Änderungen also drin. Überprüfen kannst du das nach einem Firmware-Update unter Info->System in der WebApp, da steht dann " v24.2.16-12-g8b6e57c".

Ok, alles klar. Mach ich gerne.
Allerdings scheint das Firmware-Update irgendwie nicht geklappt zu haben. Ich hab mir das besagte File runtergeladen und installiert, es kam 100%, dann die Meldung, daß die Firmware aktualisiert wurde, aber in der Web-UI steht immer noch die alte drin?!?
Das ist doch die korrekte, oder?
screenshot_1498
Hier sieht das immer noch so aus:
screenshot_1499

@schlimmchen
Copy link
Collaborator Author

Alles richtig. Danke für eure Hilfe und schon jetzt für eure Rückmeldung 😉

[Ich musste gerade etwas dazulernen. Bei solch einem PR build run macht github einen merge, siehe https://github.com/helgeerbe/OpenDTU-OnBattery/commit/0a5073d. Daher kommt dieser Commit-Hash. Der ist kein Teil von irgendeinem Branch, jedenfalls nicht im öffentlichen Teil des Repos, sondern nur lokal auf dem Rechner, der die Firmware dann baut. Daher wird der Branch "master" angezeigt in der Web UI, obwohl das nicht stimmig ist. Vielleicht kann man da noch nachbessern, aber das ist echt nice-to-have und sonst nichts.]

@schlimmchen
Copy link
Collaborator Author

eine Frage: woran erkenne ich bei solchen PR-Versionen, ob ich tatsächlich die richtige installiert habe?

Siehe #709 😊 (gilt natürlich noch nicht, erst für jeden neuen PR, sobald @helgeerbe #709 ge-merge't hat).

@chrisli01
Copy link

Guten Morgen,
werds gerne testen! Danke für deine Arbeit!!!

Welche muss ich einspielen? Die Factory?

@dk7td
Copy link

dk7td commented Mar 4, 2024

Guten Morgen, werds gerne testen! Danke für deine Arbeit!!!

Welche muss ich einspielen? Die Factory?

Hieß factory nicht Factory-Reset? Ich hab bisher immer die generic genommen.

@chrisli01
Copy link

IMG_8627

habs eingespielt!

muss ich Einstellungen anpassen oder einfach mal so laufen lassen und schaun ob der WR immer „aufgeweckt“ wird!??

@schlimmchen
Copy link
Collaborator Author

muss ich Einstellungen anpassen oder einfach mal so laufen lassen und schaun ob der WR immer „aufgeweckt“ wird!??

Einfach laufen lassen und melden, falls er sich doch wieder verklemmt oder melden, wenn er sich so lange nicht verklemmt hat dass du dir sicher bist, dass meine Änderung ein Fortschritt für dich ist.

@dk7td
Copy link

dk7td commented Mar 4, 2024

image ist das korrekt so? bei mir steht bei der Versionsnummer komischerweise kein g davor …

@schlimmchen
Copy link
Collaborator Author

Naja, nicht mehr jedenfalls, oben hast du ja einen Screenshot geteilt, bei dem auch du das "g" davor hast. Ich weiß leider nicht, wann es da steht und wann nicht. Jedenfalls ist das richtig so, der GIT Hash ist korrekt.

@helgeerbe helgeerbe merged commit 78e70cc into helgeerbe:development Mar 5, 2024
8 checks passed
@chrisli01
Copy link

IMG_8635
IMG_8636

Interrupt received
11:57:27.171 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 DE FB A6 | -34 dBm
11:57:27.492 > PowerMeterClass: TotalPower: 1074.11
11:57:27.614 > RX Period End
11:57:27.666 > Middle missing
11:57:27.718 > Request retransmit: 4
11:57:27.741 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 84 15
11:57:27.794 > Interrupt received
11:57:27.821 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 3B 13 8A 00 00 00 00 00 00 00 00 00 84 79 | -34 dBm
11:57:27.874 > RX Period End
11:57:27.926 > Success
11:57:27.978 > [DPL::updateInverter] Starting inverter...
11:57:28.013 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
11:57:28.039 > Interrupt received
11:57:28.078 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -34 dBm
11:57:28.122 > Websocket: [/livedata][9] disconnect
11:57:29.637 > RX Period End
11:57:29.762 > Success
11:57:29.818 > Fetch inverter: 114483761097
11:57:29.844 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA 99 00 00 00 00 00 00 00 00 B8 87 05
11:57:29.894 > Interrupt received
11:57:29.919 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 03 3E 03 56 0A 57 0A B2 00 00 22 | -46 dBm
11:57:29.987 > Interrupt received
11:57:30.040 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D7 00 00 DC B9 01 89 01 91 09 3A 13 8A 13 EC 9A | -46 dBm
11:57:30.095 > Interrupt received
11:57:30.116 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 D7 03 E7 01 15 00 01 6D E5 F8 | -46 dBm
11:57:30.198 > RX Period End
11:57:30.250 > Success
11:57:30.668 > Fetch inverter: 116491433252
11:57:30.768 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA 9A 00 00 00 00 00 00 00 00 48 93 22
11:57:30.818 > Interrupt received
11:57:30.841 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 02 00 01 00 0A 00 06 00 00 1E | -33 dBm
11:57:30.890 > Interrupt received
11:57:30.923 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 76 01 74 00 05 CF | -33 dBm
11:57:30.970 > Interrupt received
11:57:31.006 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 01 00 15 00 03 00 00 74 09 00 00 E6 7E 00 4B AB | -33 dBm
11:57:31.172 > Interrupt received
11:57:31.271 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 40 13 8A 00 00 00 00 00 00 00 00 00 84 02 | -34 dBm
11:57:31.326 > Interrupt received
11:57:31.348 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 FD 03 7D | -34 dBm
11:57:31.399 > RX Period End
11:57:31.446 > Success
11:57:31.498 > [DPL::updateInverter] Starting inverter...
11:57:31.523 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
11:57:31.546 > [ 17850.594] DPL: waiting for a start/stop/restart command to complete
11:57:31.598 > Interrupt received
11:57:31.625 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -34 dBm
11:57:33.321 > RX Period End
11:57:33.446 > Success
11:57:33.630 > Fetch inverter: 114483761097
11:57:33.726 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA 9D 00 00 00 00 00 00 00 00 78 B5 F3
11:57:33.774 > Interrupt received
11:57:33.800 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 03 8D 03 A5 0B 4E 0B AE 00 00 67 | -46 dBm
11:57:33.854 > Interrupt received
11:57:33.876 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D7 00 00 DC B9 01 89 01 91 09 37 13 8A 15 C5 B8 | -46 dBm
11:57:33.926 > Interrupt received
11:57:33.948 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 EC 03 E7 01 15 00 01 2C 4C 2B | -46 dBm
11:57:34.004 > RX Period End
11:57:34.037 > Success
11:57:34.345 > Fetch inverter: 116491433252
11:57:34.453 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA 9E 00 00 00 00 00 00 00 00 88 A1 D4
11:57:34.661 > Interrupt received
11:57:34.761 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 77 00 02 00 01 00 0A 00 06 00 00 1E | -34 dBm
11:57:34.810 > Interrupt received
11:57:34.831 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 77 01 75 00 05 CF | -34 dBm
11:57:34.885 > Interrupt received
11:57:34.909 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 01 00 15 00 03 00 00 74 09 00 00 E6 7E 00 4B AB | -34 dBm
11:57:34.962 > Interrupt received
11:57:34.986 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 3B 13 8A 00 00 00 00 00 00 00 00 00 84 79 | -34 dBm
11:57:35.037 > Interrupt received
11:57:35.060 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 E2 91 F0 | -34 dBm
11:57:35.124 > RX Period End
11:57:35.174 > Success
11:57:35.222 > [DPL::updateInverter] Starting inverter...
11:57:35.247 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
11:57:35.294 > Interrupt received
11:57:35.318 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -34 dBm
11:57:36.903 > RX Period End
11:57:37.107 > Success
11:57:37.313 > Fetch inverter: 114483761097
11:57:37.408 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA A0 00 00 00 00 00 00 00 00 E9 B9 53
11:57:37.458 > Interrupt received
11:57:37.485 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 03 9E 03 BC 0B 82 0B F7 00 00 F8 | -47 dBm
11:57:37.535 > Interrupt received
11:57:37.556 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D7 00 00 DC B9 01 89 01 91 09 3A 13 8A 16 3B 48 | -46 dBm
11:57:37.607 > Interrupt received
11:57:37.629 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 F0 03 E8 01 15 00 01 C8 62 F6 | -46 dBm
11:57:37.682 > PowerMeterClass: TotalPower: 1036.96
11:57:37.754 > RX Period End
11:57:37.806 > Success
11:57:37.962 > Fetch inverter: 116491433252
11:57:37.986 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA A1 00 00 00 00 00 00 00 00 79 B4 0F
11:57:38.037 > Interrupt received
11:57:38.061 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 78 00 02 00 01 00 0A 00 06 00 00 11 | -34 dBm
11:57:38.114 > Interrupt received
11:57:38.235 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 78 01 76 00 05 C3 | -34 dBm
11:57:38.286 > Interrupt received
11:57:38.315 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 15 00 03 00 00 74 09 00 00 E6 7E 00 4B AA | -34 dBm
11:57:38.366 > Interrupt received
11:57:38.398 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 3D 13 8A 00 00 00 00 00 00 00 00 00 84 7F | -34 dBm
11:57:38.446 > Interrupt received
11:57:38.469 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 31 38 8A | -34 dBm
11:57:38.522 > RX Period End
11:57:38.576 > Success
11:57:38.630 > [DPL::updateInverter] Starting inverter...
11:57:38.653 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
11:57:38.714 > Interrupt received
11:57:38.848 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -34 dBm
11:57:40.550 > RX Period End
11:57:40.602 > Success
11:57:40.666 > Fetch inverter: 114483761097
11:57:40.692 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA A4 00 00 00 00 00 00 00 00 29 8B A5
11:57:40.754 > Interrupt received
11:57:40.798 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 40 02 EC 03 0D 09 56 09 C9 00 00 D1 | -46 dBm
11:57:40.850 > Interrupt received
11:57:40.996 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D8 00 00 DC B9 01 8A 01 91 09 34 13 8A 12 1B 6E | -46 dBm
11:57:41.046 > Interrupt received
11:57:41.073 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 C4 03 E8 01 15 00 01 D1 CB 72 | -46 dBm
11:57:41.130 > RX Period End
11:57:41.178 > Success
11:57:41.639 > Fetch inverter: 116491433252
11:57:41.713 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA A5 00 00 00 00 00 00 00 00 B9 86 F9
11:57:41.762 > Interrupt received
11:57:41.786 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 73 01 74 00 02 00 01 00 09 00 06 00 00 1A | -34 dBm
11:57:41.846 > Interrupt received
11:57:41.877 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 74 01 72 00 05 CB | -34 dBm
11:57:41.930 > Interrupt received
11:57:41.952 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 15 00 03 00 00 74 09 00 00 E6 7E 00 4B AA | -34 dBm
11:57:41.986 > Interrupt received
11:57:42.042 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 33 13 8A 00 00 00 00 00 00 00 00 00 84 71 | -34 dBm
11:57:42.070 > Interrupt received
11:57:42.095 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 EC 41 2E | -34 dBm
11:57:42.145 > RX Period End
11:57:42.198 > Success
11:57:42.255 > [DPL::updateInverter] Starting inverter...
11:57:42.277 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
11:57:42.302 > [ 17861.522] DPL: waiting for a start/stop/restart command to complete
11:57:42.350 > Interrupt received
11:57:42.374 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -34 dBm
11:57:44.287 > RX Period End
11:57:44.402 > Success
11:57:44.450 > Fetch inverter: 114483761097
11:57:44.477 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA A8 00 00 00 00 00 00 00 00 29 DE FC
11:57:44.526 > Interrupt received
11:57:44.550 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 40 02 82 02 9F 08 06 08 67 00 00 D2 | -47 dBm
11:57:44.598 > Interrupt received
11:57:44.627 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D8 00 00 DC BA 01 8A 01 92 09 2E 13 8A 0F 8F FD | -46 dBm
11:57:44.682 > Interrupt received
11:57:44.709 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 A9 03 E8 01 15 00 01 10 15 00 | -47 dBm
11:57:44.762 > RX Period End
11:57:44.814 > Success
11:57:45.198 > Fetch inverter: 116491433252
11:57:45.223 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA A9 00 00 00 00 00 00 00 00 B9 D3 A0
11:57:45.298 > Interrupt received
11:57:45.321 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 72 01 72 00 02 00 01 00 09 00 06 00 00 1D | -34 dBm
11:57:45.382 > Interrupt received
11:57:45.405 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 73 01 71 00 05 CF | -34 dBm
11:57:45.454 > Interrupt received
11:57:45.478 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 15 00 03 00 00 74 09 00 00 E6 7E 00 4B AA | -34 dBm
11:57:45.536 > Interrupt received
11:57:45.612 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 31 13 8B 00 00 00 00 00 00 00 00 00 84 72 | -34 dBm
11:57:45.642 > Interrupt received
11:57:45.660 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 DA 93 CA | -34 dBm
11:57:45.762 > RX Period End
11:57:45.814 > Success
11:57:45.872 > [DPL::updateInverter] Starting inverter...
11:57:45.911 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
11:57:45.958 > Interrupt received
11:57:45.987 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -34 dBm
11:57:47.590 > PowerMeterClass: TotalPower: 1114.85
11:57:47.823 > RX Period End
11:57:47.874 > Success
11:57:47.923 > Fetch inverter: 114483761097
11:57:47.944 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA AB 00 00 00 00 00 00 00 00 D9 CA 1B
11:57:47.994 > Interrupt received
11:57:48.020 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 40 02 AC 02 BF 08 8C 08 CE 00 00 FF | -46 dBm
11:57:48.070 > Interrupt received
11:57:48.093 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D8 00 00 DC BA 01 8A 01 92 09 36 13 8A 10 6F 1A | -46 dBm
11:57:48.142 > Interrupt received
11:57:48.170 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 03 00 B2 03 E7 01 15 00 01 51 A2 E1 | -46 dBm
11:57:48.402 > RX Period End
11:57:48.498 > Success
11:57:48.521 > [DPL::updateInverter] timeout, state transition pending: yes, limit pending: no
11:57:48.566 > [ 17867.836] DPL: waiting for sufficiently recent inverter data
11:57:48.826 > Fetch inverter: 116491433252
11:57:48.855 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA AC 00 00 00 00 00 00 00 00 E9 EC CA
11:57:48.930 > Interrupt received
11:57:48.954 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 75 00 03 00 01 00 0B 00 06 00 00 1E | -34 dBm
11:57:49.010 > Interrupt received
11:57:49.055 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 75 01 73 00 05 CB | -34 dBm
11:57:49.096 > Interrupt received
11:57:49.189 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 01 00 15 00 04 00 00 74 09 00 00 E6 7E 00 4B AC | -34 dBm
11:57:49.242 > Interrupt received
11:57:49.266 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 3D 13 8A 00 00 00 00 00 00 00 00 00 84 7F | -34 dBm
11:57:49.314 > Interrupt received
11:57:49.337 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 E6 88 ED | -34 dBm
11:57:49.398 > RX Period End
11:57:49.450 > Success
11:57:49.473 > [ 17868.736] DPL: waiting for sufficiently recent power meter reading
11:57:49.910 > Fetch inverter: 114483761097
11:57:50.010 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA AD 00 00 00 00 00 00 00 00 79 E1 96
11:57:50.043 > Interrupt received
11:57:50.054 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 03 48 03 61 0A 76 0A D7 00 00 27 | -47 dBm
11:57:50.105 > Interrupt received
11:57:50.129 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D8 00 00 DC BA 01 8A 01 92 09 3A 13 8A 14 2C 51 | -46 dBm
11:57:50.186 > Interrupt received
11:57:50.211 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 DA 03 E7 01 15 00 01 9C 7D 9C | -46 dBm
11:57:50.394 > RX Period End
11:57:50.446 > Success
11:57:50.928 > Fetch inverter: 116491433252
11:57:51.033 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA AE 00 00 00 00 00 00 00 00 89 F5 B1
11:57:51.083 > Interrupt received
11:57:51.241 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 77 00 02 00 01 00 0A 00 06 00 00 1E | -34 dBm
11:57:51.314 > Interrupt received
11:57:51.454 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 77 01 75 00 05 CF | -34 dBm
11:57:51.512 > Interrupt received
11:57:51.555 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 15 00 03 00 00 74 09 00 00 E6 7E 00 4B AA | -34 dBm
11:57:51.603 > Interrupt received
11:57:51.626 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 3B 13 8B 00 00 00 00 00 00 00 00 00 84 78 | -34 dBm
11:57:51.682 > Interrupt received
11:57:51.714 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 A3 FE DE | -34 dBm
11:57:51.776 > RX Period End
11:57:51.826 > Success
11:57:51.876 > Fetch inverter: 114483761097
11:57:51.899 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA AF 00 00 00 00 00 00 00 00 19 F8 ED
11:57:51.951 > Interrupt received
11:57:51.976 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 03 50 03 6D 0A 8D 0A FB 00 00 E4 | -46 dBm
11:57:52.027 > Interrupt received
11:57:52.066 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D8 00 00 DC BA 01 8A 01 92 09 35 13 8B 14 64 17 | -46 dBm
11:57:52.102 > Interrupt received
11:57:52.127 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 02 00 DD 03 E7 01 15 00 01 5A 4B 6D | -46 dBm
11:57:52.473 > RX Period End
11:57:52.595 > Success
11:57:52.879 > Fetch inverter: 116491433252
11:57:52.977 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA B0 00 00 00 00 00 00 00 00 29 74 8E
11:57:53.026 > Interrupt received
11:57:53.041 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 02 00 01 00 0A 00 06 00 00 1E | -34 dBm
11:57:53.074 > Interrupt received
11:57:53.097 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 77 01 75 00 05 CF | -34 dBm
11:57:53.151 > Interrupt received
11:57:53.174 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 15 00 03 00 00 74 09 00 00 E6 7E 00 4B AA | -34 dBm
11:57:53.222 > Interrupt received
11:57:53.248 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 39 13 8A 00 00 00 00 00 00 00 00 00 84 7B | -34 dBm
11:57:53.299 > Interrupt received
11:57:53.323 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 23 C3 63 | -34 dBm
11:57:53.406 > RX Period End
11:57:53.459 > Success
11:57:53.891 > Fetch inverter: 114483761097
11:57:54.098 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA B1 00 00 00 00 00 00 00 00 B9 79 D2
11:57:54.312 > Interrupt received
11:57:54.416 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 03 48 03 62 0A 73 0A D6 00 00 20 | -46 dBm
11:57:54.466 > Interrupt received
11:57:54.497 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D8 00 00 DC BA 01 8A 01 92 09 35 13 8A 14 29 5B | -46 dBm
11:57:54.535 > Interrupt received
11:57:54.559 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 DA 03 E8 01 15 00 01 96 E1 01 | -46 dBm
11:57:54.614 > RX Period End
11:57:54.666 > Success
11:57:54.850 > Fetch inverter: 116491433252
11:57:54.886 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA B2 00 00 00 00 00 00 00 00 49 6D F5
11:57:54.962 > Interrupt received
11:57:54.988 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 02 00 01 00 0A 00 06 00 00 1E | -34 dBm
11:57:55.027 > Interrupt received
11:57:55.045 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 76 01 74 00 05 CF | -34 dBm
11:57:55.086 > Interrupt received
11:57:55.109 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 15 00 03 00 00 74 09 00 00 E6 7E 00 4B AA | -34 dBm
11:57:55.199 > Interrupt received
11:57:55.395 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 39 13 8A 00 00 00 00 00 00 00 00 00 84 7B | -34 dBm
11:57:55.450 > Interrupt received
11:57:55.472 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 1F D7 4B | -34 dBm
11:57:55.515 > RX Period End
11:57:55.562 > Success
11:57:55.944 > Fetch inverter: 114483761097
11:57:56.049 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA B3 00 00 00 00 00 00 00 00 D9 60 A9
11:57:56.090 > Interrupt received
11:57:56.104 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 03 2D 03 45 0A 1E 0A 7C 00 00 A5 | -46 dBm
11:57:56.254 > Interrupt received
11:57:56.278 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D9 00 00 DC BA 01 8B 01 92 09 35 13 8A 13 82 F7 | -47 dBm
11:57:56.314 > Interrupt received
11:57:56.336 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 D3 03 E8 01 15 00 01 59 EF C9 | -46 dBm
11:57:56.422 > RX Period End
11:57:56.471 > Success
11:57:56.962 > Fetch inverter: 116491433252
11:57:57.047 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA B4 00 00 00 00 00 00 00 00 E9 46 78
11:57:57.082 > Interrupt received
11:57:57.094 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 76 00 02 00 01 00 0A 00 06 00 00 1D | -34 dBm
11:57:57.138 > Interrupt received
11:57:57.176 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 76 01 74 00 05 CF | -34 dBm
11:57:57.234 > Interrupt received
11:57:57.284 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 15 00 03 00 00 74 09 00 00 E6 7E 00 4B AA | -34 dBm
11:57:57.335 > Interrupt received
11:57:57.357 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 38 13 8A 00 00 00 00 00 00 00 00 00 84 7A | -34 dBm
11:57:57.410 > Interrupt received
11:57:57.433 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 1F D5 49 | -34 dBm
11:57:57.486 > RX Period End
11:57:57.602 > Success
11:57:57.763 > PowerMeterClass: TotalPower: 1074.66
11:57:57.792 > [DPL::loop] ******************* ENTER **********************
11:57:57.816 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 17877 s, ignore: no
11:57:57.843 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 37.30 V, returning: 37.30V
11:57:57.869 > [DPL::loop] dcVoltage: 37.30 V, loadCorrectedVoltage: 37.30 V, StartTH: 1.00 V, StopTH: 0.00 V
11:57:57.894 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
11:57:57.917 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
11:57:57.942 > [DPL::loop] battery discharging allowed, PowerMeter: 1075 W, target consumption: -200 W
11:57:57.967 > [DPL::setNewPowerLimit] 4 channels total, 1 producing channels, scaling power limit
11:57:57.983 > [DPL::setNewPowerLimit] calculated: 1275 W, requesting: 2000 W, reported: 1220 W, diff: 780 W, hysteresis: 25 W
11:57:58.018 > [DPL::updateInverter] sending limit of 100.0 % (2000 W respectively), max output is 2000 W
11:57:58.044 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 03 E8 00 01 D0 40 25
11:57:58.054 > [ 17877.205] DPL: waiting for a power limit command to complete
11:57:58.090 > Interrupt received
11:57:58.112 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -34 dBm
11:57:59.944 > RX Period End
11:58:00.077 > Success
11:58:00.236 > Fetch inverter: 114483761097
11:58:00.352 > [DPL:updateInverter] actual limit is 100.0 % (2000 W respectively), effective 2109 ms after update started, requested were 100.0 %
11:58:00.411 > [DPL::updateInverter] Starting inverter...
11:58:00.432 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA B7 00 00 00 00 00 00 00 00 19 52 5F
11:58:00.456 > [ 17879.298] DPL: waiting for a start/stop/restart command to complete
11:58:00.510 > Interrupt received
11:58:00.537 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 03 63 03 77 0A C6 0B 19 00 00 65 | -46 dBm
11:58:00.590 > Interrupt received
11:58:00.612 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D9 00 00 DC BB 01 8B 01 93 09 2F 13 8A 14 B6 DE | -46 dBm
11:58:00.666 > Interrupt received
11:58:00.689 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 E1 03 E8 01 16 00 01 95 D6 0D | -46 dBm
11:58:00.750 > RX Period End
11:58:00.790 > Success
11:58:00.813 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
11:58:00.867 > Interrupt received
11:58:00.889 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -34 dBm
11:58:02.587 > RX Period End
11:58:02.804 > Success
11:58:02.997 > Fetch inverter: 116491433252
11:58:03.200 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA BA 00 00 00 00 00 00 00 00 89 0A 5A
11:58:03.411 > Interrupt received
11:58:03.524 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 78 01 78 00 02 00 01 00 0A 00 06 00 00 1E | -34 dBm
11:58:03.584 > Interrupt received
11:58:03.610 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 78 01 76 00 05 C3 | -34 dBm
11:58:03.662 > Interrupt received
11:58:03.685 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 15 00 03 00 00 74 09 00 00 E6 7E 00 4B AA | -34 dBm
11:58:03.739 > Interrupt received
11:58:03.785 > Interrupt received
11:58:03.797 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 34 3E 89 | -34 dBm
11:58:03.809 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 34 3E 89 | -34 dBm
11:58:03.858 > RX Period End
11:58:03.910 > Middle missing
11:58:03.962 > Request retransmit: 4
11:58:03.984 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 84 15
11:58:04.034 > Interrupt received
11:58:04.052 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 34 13 8A 00 00 00 00 00 00 00 00 00 84 76 | -34 dBm
11:58:04.082 > RX Period End
11:58:04.138 > Success
11:58:04.190 > [DPL::updateInverter] Starting inverter...
11:58:04.212 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
11:58:04.250 > Interrupt received
11:58:04.273 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -34 dBm
11:58:05.349 > RX Period End
11:58:05.554 > Success
11:58:05.777 > Fetch inverter: 114483761097
11:58:05.879 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA BD 00 00 00 00 00 00 00 00 B9 2C 8B
11:58:05.926 > Interrupt received
11:58:05.953 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 03 68 03 8A 0A DA 0B 58 00 00 CE | -46 dBm
11:58:06.006 > Interrupt received
11:58:06.040 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 D9 00 00 DC BB 01 8B 01 93 09 30 13 8A 15 05 73 | -52 dBm
11:58:06.070 > Interrupt received
11:58:06.092 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 E4 03 E7 01 16 00 01 82 FC 3E | -48 dBm
11:58:06.142 > RX Period End
11:58:06.194 > Success
11:58:06.286 > Fetch inverter: 116491433252
11:58:06.320 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA BE 00 00 00 00 00 00 00 00 49 38 AC
11:58:06.399 > Interrupt received
11:58:06.421 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 77 00 02 00 01 00 0A 00 06 00 00 1E | -33 dBm
11:58:06.478 > Interrupt received
11:58:06.503 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 77 01 75 00 05 CF | -33 dBm
11:58:06.555 > Interrupt received
11:58:06.580 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 15 00 03 00 00 74 09 00 00 E6 7E 00 4B AA | -33 dBm
11:58:06.635 > Interrupt received
11:58:06.658 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 34 13 8A 00 00 00 00 00 00 00 00 00 84 76 | -33 dBm
11:58:06.706 > Interrupt received
11:58:06.737 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 26 B3 16 | -33 dBm
11:58:06.859 > RX Period End
11:58:06.911 > Success
11:58:06.963 > [DPL::updateInverter] Starting inverter...
11:58:06.986 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
11:58:07.034 > Interrupt received
11:58:07.049 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
11:58:07.821 > PowerMeterClass: TotalPower: 651.27
11:58:08.933 > RX Period End
11:58:09.137 > Success
11:58:09.358 > Fetch inverter: 114483761097
11:58:09.463 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA C0 00 00 00 00 00 00 00 00 EB 11 99
11:58:09.510 > Interrupt received
11:58:09.535 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 40 03 1D 03 3E 09 EF 0A 62 00 00 03 | -46 dBm
11:58:09.582 > Interrupt received
11:58:09.605 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 DA 00 00 DC BB 01 8C 01 93 09 3C 13 8A 13 3E 46 | -46 dBm
11:58:09.663 > Interrupt received
11:58:09.688 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 D0 03 E7 01 16 00 01 DF 1C B7 | -46 dBm
11:58:09.734 > RX Period End
11:58:09.766 > Success
11:58:09.919 > Fetch inverter: 116491433252
11:58:09.953 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA C1 00 00 00 00 00 00 00 00 7B 1C C5
11:58:10.026 > Interrupt received
11:58:10.039 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 4A 01 4A 01 43 01 41 04 0E 04 07 00 00 1A | -34 dBm
11:58:10.074 > Interrupt received
11:58:10.095 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 4C 01 50 01 40 95 | -34 dBm
11:58:10.142 > Interrupt received
11:58:10.167 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 FE 04 0D 03 4C 00 00 74 09 00 00 E6 7E 00 4B 04 | -34 dBm
11:58:10.211 > Interrupt received
11:58:10.232 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 44 13 89 0E AA 00 03 00 9E 03 E7 00 84 D8 | -34 dBm
11:58:10.287 > Interrupt received
11:58:10.385 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 A1 DB F9 | -34 dBm
11:58:10.494 > RX Period End
11:58:10.546 > Success
11:58:10.568 > [ 17889.833] DPL: waiting for sufficiently recent power meter reading
11:58:10.989 > Fetch inverter: 114483761097
11:58:11.048 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA C2 00 00 00 00 00 00 00 00 8B 08 E2
11:58:11.103 > Interrupt received
11:58:11.134 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 40 03 0C 03 2C 09 BA 0A 2A 00 00 1D | -46 dBm
11:58:11.264 > Interrupt received
11:58:11.314 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 DA 00 00 DC BC 01 8C 01 94 09 40 13 89 12 D7 D1 | -46 dBm
11:58:11.362 > Interrupt received
11:58:11.389 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 CB 03 E7 01 16 00 01 73 BB A7 | -44 dBm
11:58:11.491 > RX Period End
11:58:11.538 > Success
11:58:12.014 > Fetch inverter: 116491433252
11:58:12.053 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA C3 00 00 00 00 00 00 00 00 1B 05 BE
11:58:12.082 > Interrupt received
11:58:12.106 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 3D 01 3D 01 89 01 84 04 E0 04 CF 00 00 33 | -34 dBm
11:58:12.158 > Interrupt received
11:58:12.183 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 3E 01 4D 01 82 38 | -34 dBm
11:58:12.238 > Interrupt received
11:58:12.261 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 01 24 04 D1 03 CD 00 00 74 09 00 00 E6 7E 00 4B 82 | -34 dBm
11:58:12.311 > Interrupt received
11:58:12.339 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 47 13 89 11 65 00 03 00 BB 03 E7 00 84 2E | -34 dBm
11:58:12.390 > Interrupt received
11:58:12.415 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 9D 1F 01 | -34 dBm
11:58:12.495 > RX Period End
11:58:12.546 > Success
11:58:13.027 > Fetch inverter: 114483761097
11:58:13.055 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA C4 00 00 00 00 00 00 00 00 2B 23 6F
11:58:13.094 > Interrupt received
11:58:13.122 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 40 02 ED 03 0D 09 59 09 C6 00 00 D0 | -46 dBm
11:58:13.175 > Interrupt received
11:58:13.208 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 DA 00 00 DC BC 01 8C 01 94 09 42 13 89 12 1C 18 | -46 dBm
11:58:13.262 > Interrupt received
11:58:13.286 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 03 00 C3 03 E7 01 16 00 01 83 9D 7E | -49 dBm
11:58:13.498 > RX Period End
11:58:13.550 > Success
11:58:13.944 > Fetch inverter: 116491433252
11:58:13.974 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA C5 00 00 00 00 00 00 00 00 BB 2E 33
11:58:14.037 > Interrupt received
11:58:14.056 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 3D 01 3D 01 7A 01 75 04 B0 04 A2 00 00 0C | -34 dBm
11:58:14.102 > Interrupt received
11:58:14.146 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 3E 01 4C 01 75 CE | -34 dBm
11:58:14.206 > Interrupt received
11:58:14.232 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 01 1B 04 A5 03 B0 00 00 74 09 00 00 E6 7E 00 4B B4 | -34 dBm
11:58:14.290 > Interrupt received
11:58:14.313 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 47 13 89 10 C6 00 03 00 B4 03 E7 00 84 83 | -34 dBm
11:58:14.366 > Interrupt received
11:58:14.390 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 27 75 D1 | -34 dBm
11:58:14.570 > RX Period End
11:58:14.789 > Success
11:58:14.978 > Fetch inverter: 114483761097
11:58:15.046 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA C6 00 00 00 00 00 00 00 00 4B 3A 14
11:58:15.086 > Interrupt received
11:58:15.109 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 40 02 DF 02 FB 09 29 09 8E 00 00 2D | -47 dBm
11:58:15.142 > Interrupt received
11:58:15.162 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 BF 03 E8 01 16 00 01 F3 B5 56 | -46 dBm
11:58:15.591 > RX Period End
11:58:15.794 > Middle missing
11:58:16.008 > Request retransmit: 2
11:58:16.037 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 82 D3
11:58:16.082 > Interrupt received
11:58:16.104 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 DA 00 00 DC BC 01 8C 01 94 09 43 13 89 11 B9 BF | -46 dBm
11:58:16.158 > RX Period End
11:58:16.210 > Success
11:58:16.260 > Fetch inverter: 116491433252
11:58:16.287 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA C8 00 00 00 00 00 00 00 00 2B 76 F6
11:58:16.338 > Interrupt received
11:58:16.362 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 3D 01 3D 01 77 01 72 04 A4 04 97 00 00 27 | -34 dBm
11:58:16.414 > Interrupt received
11:58:16.440 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 16 00 00 79 00 00 43 00 46 01 3E 01 4C 01 71 CA | -34 dBm
11:58:16.494 > Interrupt received
11:58:16.522 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 01 19 04 9A 03 A8 00 00 74 09 00 00 E6 7E 00 4B 91 | -34 dBm
11:58:16.570 > Interrupt received
11:58:16.594 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 48 13 89 10 9F 00 03 00 B3 03 E7 00 84 D2 | -34 dBm
11:58:16.642 > Interrupt received
11:58:16.666 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 3A 06 BF | -34 dBm
11:58:16.718 > RX Period End
11:58:16.766 > Success
11:58:16.950 > Fetch inverter: 114483761097
11:58:16.986 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA C9 00 00 00 00 00 00 00 00 BB 7B AA
11:58:17.074 > Interrupt received
11:58:17.100 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 40 02 E2 02 FE 09 34 09 96 00 00 10 | -46 dBm
11:58:17.150 > Interrupt received
11:58:17.173 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 DA 00 00 DC BC 01 8C 01 94 09 44 13 89 11 CC CD | -46 dBm
11:58:17.230 > Interrupt received
11:58:17.258 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 C0 03 E8 01 16 00 01 E1 CB 45 | -46 dBm
11:58:17.528 > RX Period End
11:58:17.756 > Success
11:58:17.938 > PowerMeterClass: TotalPower: 709.63
11:58:17.985 > [DPL::loop] ******************* ENTER **********************
11:58:18.004 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 17897 s, ignore: no
11:58:18.018 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 31.70 V, returning: 31.70V
11:58:18.043 > [DPL::loop] dcVoltage: 31.70 V, loadCorrectedVoltage: 32.13 V, StartTH: 1.00 V, StopTH: 0.00 V
11:58:18.054 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
11:58:18.080 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
11:58:18.107 > [DPL::loop] battery discharging allowed, PowerMeter: 710 W, target consumption: -200 W
11:58:18.129 > [DPL::setNewPowerLimit] calculated: 1335 W, requesting: 1335 W, reported: 2000 W, diff: 665 W, hysteresis: 25 W
11:58:18.153 > [DPL::updateInverter] sending limit of 66.8 % (1335 W respectively), max output is 2000 W
11:58:18.176 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 02 9B 00 01 F7 B0 80
11:58:18.203 > [ 17897.381] DPL: waiting for a power limit command to complete
11:58:18.254 > Interrupt received
11:58:18.276 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -33 dBm
11:58:20.089 > RX Period End
11:58:20.295 > Success
11:58:20.500 > Fetch inverter: 116491433252
11:58:20.699 > [DPL:updateInverter] actual limit is 66.0 % (1320 W respectively), effective 2107 ms after update started, requested were 66.8 %
11:58:20.906 > [ 17899.406] DPL: waiting for sufficiently recent inverter data
11:58:21.108 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA CC 00 00 00 00 00 00 00 00 EB 44 00
11:58:21.170 > Interrupt received
11:58:21.317 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 3D 01 3D 01 7C 01 77 04 B6 04 A6 00 00 0A | -34 dBm
11:58:21.523 > Interrupt received
11:58:21.722 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 17 00 00 79 00 00 44 00 46 01 3E 01 4C 01 75 C8 | -34 dBm
11:58:21.934 > Interrupt received
11:58:22.040 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 01 1C 04 A8 03 B2 00 00 74 09 00 00 E6 7E 00 4B BC | -34 dBm
11:58:22.075 > Interrupt received
11:58:22.096 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 4A 13 89 10 D5 00 02 00 B5 03 E7 00 84 9D | -34 dBm
11:58:22.151 > Interrupt received
11:58:22.267 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 54 4C 9B | -34 dBm
11:58:22.315 > RX Period End
11:58:22.362 > Success
11:58:22.386 > [ 17899.980] DPL: waiting for sufficiently recent power meter reading
11:58:22.434 > Fetch inverter: 114483761097
11:58:22.458 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA CD 00 00 00 00 00 00 00 00 7B 49 5C
11:58:22.510 > Interrupt received
11:58:22.534 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 02 F9 03 13 09 7A 09 D8 00 00 E6 | -47 dBm
11:58:22.594 > Interrupt received
11:58:22.616 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 DA 00 00 DC BC 01 8C 01 94 09 43 13 89 12 4D 48 | -47 dBm
11:58:22.674 > Interrupt received
11:58:22.700 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 C5 03 E8 01 16 00 01 E0 EA 60 | -48 dBm
11:58:22.758 > RX Period End
11:58:22.806 > Success
11:58:22.854 > Fetch inverter: 116491433252
11:58:22.878 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA CE 00 00 00 00 00 00 00 00 8B 5D 7B
11:58:22.926 > Interrupt received
11:58:22.952 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 3D 01 3D 01 8A 01 83 04 E3 04 CF 00 00 34 | -34 dBm
11:58:23.008 > Interrupt received
11:58:23.028 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 17 00 00 79 00 00 44 00 46 01 3F 01 4D 01 81 3C | -34 dBm
11:58:23.082 > Interrupt received
11:58:23.193 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 01 24 04 CD 03 CC 00 00 74 0A 00 00 E6 7E 00 4C 9B | -34 dBm
11:58:23.243 > Interrupt received
11:58:23.269 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 48 13 89 11 63 00 00 00 BB 03 E8 00 84 2B | -34 dBm
11:58:23.322 > Interrupt received
11:58:23.346 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 D3 EB BB | -34 dBm
11:58:23.390 > RX Period End
11:58:23.434 > Success
11:58:23.486 > Fetch inverter: 114483761097
11:58:23.509 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA CF 00 00 00 00 00 00 00 00 1B 50 27
11:58:23.558 > Interrupt received
11:58:23.573 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 03 14 03 30 09 D1 0A 34 00 00 6D | -49 dBm
11:58:23.622 > Interrupt received
11:58:23.645 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B6 DA 00 00 DC BC 01 8C 01 94 09 42 13 89 12 F6 F2 | -47 dBm
11:58:23.698 > Interrupt received
11:58:23.722 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 CC 03 E8 01 17 00 01 01 C7 A4 | -47 dBm
11:58:23.770 > RX Period End
11:58:23.822 > Success
11:58:24.079 > Fetch inverter: 116491433252
11:58:24.113 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E6 FA D0 00 00 00 00 00 00 00 00 2B DC 44
11:58:24.187 > Interrupt received
11:58:24.210 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 3D 01 3D 01 91 01 8A 04 FA 04 E4 00 00 14 | -34 dBm
11:58:24.270 > Interrupt received
11:58:24.298 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B1 17 00 00 79 00 00 44 00 46 01 3F 01 4D 01 87 3A | -34 dBm
11:58:24.373 > Interrupt received
11:58:24.383 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 01 27 04 E2 03 DA 00 00 74 0A 00 00 E6 7E 00 4C A1 | -34 dBm
11:58:24.442 > Interrupt received
11:58:24.490 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 43 09 47 13 89 11 AD 00 00 00 BE 03 E8 00 84 EF | -34 dBm
11:58:24.518 > Interrupt received
11:58:24.540 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 17 9A 20 39 | -34 dBm
11:58:24.642 > RX Period End
11:58:24.694 > Success
11:58:25.111 > Fetch inverter: 114483761097
11:58:25.307 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E6 FA D1 00 00 00 00 00 00 00 00 BB D1 18

@chrisli01
Copy link

Hat zugeschaltet ohne manuellen Neustart!

@schlimmchen
Copy link
Collaborator Author

Hat zugeschaltet ohne manuellen Neustart!

Achje, schreibt das doch zuerst, dann such ich mir keinen Wolf in dem Log und frag mich "sieht doch aber gut aus" 😁

Schön zu lesen, danke!

@chrisli01
Copy link

😂😂
Sorry!

Leistung aus dem Netz aktualisiert sich auch schön, ist bei der letzten Version gesteckt.

@spcqike
Copy link

spcqike commented Mar 5, 2024

@schlimmchen

Ich habs heute mal genauer beobachtet. Kann es sein, dass die neue Regelung die Hystere etwas mehr ausreizt oder gar überschreitet?

in meinem Fall sollten es -20W Netzbezug bei 10W Hysterese sein. also eine Einspeisung von 10W bis 30W.

ich sehe sehr oft Werte > 30W, der DPL meldet aber kleinere Differenzen und sagt "alles ok"

12:38:12.988 > [DPL::loop] ******************* ENTER **********************
12:38:13.182 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 0 %, StopTH: 0 %, SoC age: 142347 s, ignore: no
12:38:13.280 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 45.60 V, returning: 45.60V
12:38:13.382 > [DPL::loop] dcVoltage: 45.60 V, loadCorrectedVoltage: 45.60 V, StartTH: 10.00 V, StopTH: 5.00 V
12:38:13.496 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
12:38:13.689 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
12:38:13.791 > [DPL::loop] battery discharging allowed, PowerMeter: -34 W, target consumption: -20 W
12:38:13.888 > [DPL::setNewPowerLimit] calculated: 251 W, requesting: 251 W, reported: 258 W, diff: 7 W, hysteresis: 10 W
12:38:14.310 > PowerMeterClass: TotalPower: -33.80

Wahrscheinlich kommen die Abweichungen einfach durch Rundungsfehler in der neuen Berechnung, oder?

hier ein Auszug von heute, skaliert auf 0 bis -50W
grafik

hier ein Auszug von vor dem Update
grafik

da lag die Regelung näher am Zielwert :)

in meinem Fall ist es wohl eher informativer Natur, da ich ja ein reines PV System betreibe und mir es, mehr oder weniger, egal ist, ob ich 10W mehr einspeise oder auch nicht. Bei Akkusystemen kann das aber, je nach Zielwert, ärgerlich werden, oder?

Und, ob die Abweichung mit kleinen Wechselrichtern, wie meinem HM-600, anders ist als mit einem hm-1500 bspw, kann ich grad nicht abschätzen, würde es aber nicht ausschließen :D

@schlimmchen
Copy link
Collaborator Author

Die Hysterese wird nun etwas anders interpretiert. Da das vom Inverter genannte Limit nun bekannt ist, wird das neu errechnete Limit mit diesem verglichen. Nur wenn diese Werte hinreichend voneinander abweichen, wird ein neues Limit geschickt.

Vorher wurde das zuletzt angefragte Limit mit dem neu berechneten Limit vergleichen.

Das vorher zuletzt angefragte Limit und das jetzt gemeldete Limit sind aber nicht derselbe Wert, weil der Inverter rundet. Meiner rundet scheinbar immer ab.

Vermutlich rundet auch dein HM-600 auf 1% Schritte. Laut deinem Log hat der Wechselrichter 258W eingestellt, das entspricht genau 43%. Der DPL will jetzt 251W, aber das ist nur 7 Watt vom aktuell gemeldeten Limit entfernt. Daher kein Update.

Was du erwartest ist, dass ein neues Limit geschickt wird, wenn der PowerMeter Wert mehr als um die Hysterese vom Ziel-Wert abweicht. Das ist nachvollziehbar, aber da der AC-Output des Hoymiles leider nie so recht beim Limit liegt, würde diese Interpretation lediglich dazu führen, dass ständig dieselben Limit-Updates geschickt werden.

Natürlich kann ich nicht leugnen, dass es vorher für dich etwas besser reguliert hat. Was schlägst du denn vor, was man besser machen könnte?

Ich muss noch zugeben, dass ich auch die "settling" Phase rausgenommen habe. Es wird nun schneller ein neuer Wert berechnet. Sobald nach einen Limit-Update neue Inverter-Daten und neue Power-Meter Daten vorliegen. Sonst mussten die Inverter-Daten und die Power-Meter Daten mindestens drei Sekunden jünger sein, als das letzte Limit-Update. Nicht sicher, ob das hier auch eine Rolle spielt.

@spcqike
Copy link

spcqike commented Mar 5, 2024

Ne eine konkrete Idee habe ich noch nicht. Wollte es eigentlich auch nur rein informativ darlegen. Ist mir halt als Unterschied zu vorher aufgefallen :) und akut stören tut es in meinem Fall auch nicht, da ich Überschüsse so oder so nicht einspeichern kann.

Was du erwartest ist, dass ein neues Limit geschickt wird, wenn der PowerMeter Wert mehr als um die Hysterese vom Ziel-Wert abweicht

so war es vorher, oder?

Ich kann auch noch nicht recht nachvollziehen, wie er auf den Wert kommt. Im log sieht man ja -34W powermeter value. Ich hätte also vermutet, dass das neue power Limit 14W kleiner ist, als das alte.

Unter der Annahme, dass „reported“ (258W) das aktuelle Limit und damit auch die aktuelle einspeiseleistung ist (mit rundungsfehlern), hätte das berechnete neue Limit ja irgendwo um 244W liegen müssen.

Wie gesagt, war nur rein informativ. Ich beobachte es weiter und versuche nachzuvollziehen, was da wie werkelt. Dafür braucht es aber mal etwas mehr und länger Sonne :)

@schlimmchen
Copy link
Collaborator Author

so war es vorher, oder?

Ne. Vorher habe ich oben schon beschrieben: Da wurde das zuletzt angeforderte Limit in ganzen Watt mit dem neu berechneten Limit verglichen. Der Inverter macht daraus aber ein anderes Limit (Rundung) und er hat dann tatsächlich eine etwas andere Ausgangsleistung, als das Limit, oft etwas höher. Das ist halt so. Alles in allem ergibt dann, dass die realen Messwerte des PowerMeters nicht das wiederspiegeln, was der DPL sich schönrechnet (im Sinne von "ausrechnet unter der Annahme von optimalen Bedingungen").

@ottelo9
Copy link

ottelo9 commented Mar 6, 2024

Ich habe die Firmware eben via OTA aufgespielt, leider erreiche ich die Weboberfläche nicht mehr, zeigt nur eine leere Seite an. Die Daten kommen aber noch via MQTT.

EDIT
Einmal Stecker gezogen und wieder rein, dann war die Kiste wieder erreichbar. Version g0a5073d. Ich habe opendtu-onbattery-generic_esp32.bin verwendet.

@chrisli01
Copy link

WR hat sich heute leider nicht gestartet bzw auf Produktion umgeschaltet!😔

IMG_8650

RX Period End
08:40:48.830 > Success
08:40:48.880 > Fetch inverter: 116491433252
08:40:48.930 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F 80 00 00 00 00 00 00 00 00 51 06 2E
08:40:48.970 > Interrupt received
08:40:49.014 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 74 01 73 00 03 00 01 00 0D 00 05 00 00 1C | -31 dBm
08:40:49.062 > Interrupt received
08:40:49.102 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 72 01 6F 00 05 71 | -31 dBm
08:40:49.142 > Interrupt received
08:40:49.184 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:40:49.236 > Interrupt received
08:40:49.280 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 57 13 8B 00 00 00 00 00 00 00 00 00 47 98 | -29 dBm
08:40:49.330 > Interrupt received
08:40:49.378 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 FF 04 6A | -31 dBm
08:40:49.430 > RX Period End
08:40:49.483 > Success
08:40:49.528 > [DPL::updateInverter] Starting inverter...
08:40:49.574 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:40:49.673 > Interrupt received
08:40:49.711 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:40:51.418 > RX Period End
08:40:51.462 > Success
08:40:51.520 > Fetch inverter: 114483761097
08:40:51.620 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F 83 00 00 00 00 00 00 00 00 A1 12 09
08:40:51.661 > Interrupt received
08:40:51.705 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 49 01 47 02 CA 02 E1 09 2F 09 71 00 00 AA | -49 dBm
08:40:51.744 > Interrupt received
08:40:51.802 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 BD 00 00 DF FE 00 3A 00 3D 09 48 13 8B 11 A4 9D | -46 dBm
08:40:51.840 > Interrupt received
08:40:51.878 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 02 00 BE 03 E7 00 78 00 01 D7 51 F5 | -46 dBm
08:40:51.982 > RX Period End
08:40:52.034 > Success
08:40:52.418 > Fetch inverter: 116491433252
08:40:52.480 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F 84 00 00 00 00 00 00 00 00 91 34 D8
08:40:52.526 > Interrupt received
08:40:52.574 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 74 00 03 00 01 00 0D 00 05 00 00 1A | -31 dBm
08:40:52.620 > Interrupt received
08:40:52.661 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 6F 00 05 70 | -31 dBm
08:40:52.708 > Interrupt received
08:40:52.755 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:40:52.802 > Interrupt received
08:40:52.843 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 54 13 8B 00 00 00 00 00 00 00 00 00 47 9B | -31 dBm
08:40:52.885 > Interrupt received
08:40:52.932 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 50 FA 3B | -31 dBm
08:40:53.054 > RX Period End
08:40:53.090 > Success
08:40:53.140 > [DPL::updateInverter] Starting inverter...
08:40:53.180 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:40:53.231 > Interrupt received
08:40:53.270 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:40:54.197 > PowerMeterClass: TotalPower: -224.20
08:40:55.062 > RX Period End
08:40:55.101 > Success
08:40:55.141 > Fetch inverter: 114483761097
08:40:55.181 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F 87 00 00 00 00 00 00 00 00 61 20 FF
08:40:55.229 > Interrupt received
08:40:55.279 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 4B 01 47 03 44 03 72 0A D0 0B 4A 00 00 70 | -46 dBm
08:40:55.329 > Interrupt received
08:40:55.371 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 BE 00 00 DF FE 00 3B 00 3D 09 51 13 8B 14 EF C8 | -46 dBm
08:40:55.411 > Interrupt received
08:40:55.451 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 E0 03 E7 00 78 00 01 A5 31 BF | -46 dBm
08:40:55.621 > RX Period End
08:40:55.667 > Success
08:40:56.045 > Fetch inverter: 116491433252
08:40:56.182 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F 88 00 00 00 00 00 00 00 00 91 61 81
08:40:56.193 > Interrupt received
08:40:56.199 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 04 00 00 1A | -29 dBm
08:40:56.330 > Interrupt received
08:40:56.334 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 71 00 04 69 | -31 dBm
08:40:56.339 > Interrupt received
08:40:56.384 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:40:56.429 > Interrupt received
08:40:56.471 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 54 13 8B 00 00 00 00 00 00 00 00 00 47 9B | -31 dBm
08:40:56.509 > Interrupt received
08:40:56.561 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 7D 3E D2 | -31 dBm
08:40:56.618 > RX Period End
08:40:56.751 > Success
08:40:56.752 > [DPL::updateInverter] Starting inverter...
08:40:56.752 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:40:56.791 > [ 6055.921] DPL: waiting for a start/stop/restart command to complete
08:40:56.833 > Interrupt received
08:40:56.881 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:40:58.683 > RX Period End
08:40:58.719 > Success
08:40:58.763 > Fetch inverter: 114483761097
08:40:58.801 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F 8A 00 00 00 00 00 00 00 00 F1 78 3A
08:40:58.842 > Interrupt received
08:40:58.881 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 4A 01 47 03 78 03 A3 0B 73 0B EA 00 00 9E | -46 dBm
08:40:58.923 > Interrupt received
08:40:58.959 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 BE 00 00 DF FE 00 3B 00 3D 09 55 13 8B 16 21 00 | -47 dBm
08:40:59.002 > Interrupt received
08:40:59.041 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 ED 03 E8 00 79 00 01 E5 56 9F | -46 dBm
08:40:59.253 > RX Period End
08:40:59.292 > Success
08:40:59.677 > Fetch inverter: 116491433252
08:40:59.736 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F 8B 00 00 00 00 00 00 00 00 61 75 66
08:40:59.789 > Interrupt received
08:40:59.835 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:40:59.871 > Interrupt received
08:40:59.909 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 71 00 05 68 | -31 dBm
08:40:59.953 > Interrupt received
08:40:59.989 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:00.030 > Interrupt received
08:41:00.074 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 58 13 8B 00 00 00 00 00 00 00 00 00 47 97 | -31 dBm
08:41:00.131 > Interrupt received
08:41:00.177 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 78 5E B7 | -31 dBm
08:41:00.263 > RX Period End
08:41:00.301 > Success
08:41:00.339 > [DPL::updateInverter] Starting inverter...
08:41:00.380 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:00.421 > Interrupt received
08:41:00.468 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:02.328 > RX Period End
08:41:02.366 > Success
08:41:02.413 > Fetch inverter: 114483761097
08:41:02.462 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F 8E 00 00 00 00 00 00 00 00 31 4A CC
08:41:02.500 > Interrupt received
08:41:02.555 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 4B 01 47 03 AD 03 E4 0C 2B 0C BC 00 00 03 | -46 dBm
08:41:02.580 > Interrupt received
08:41:02.620 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 BE 00 00 DF FE 00 3B 00 3D 09 59 13 8B 17 96 BA | -47 dBm
08:41:02.740 > Interrupt received
08:41:02.746 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 FC 03 E8 00 79 00 01 08 69 5C | -46 dBm
08:41:02.889 > RX Period End
08:41:02.929 > Success
08:41:02.969 > Websocket: [/livedata][5] connect
08:41:03.188 > Websocket: [/livedata][2] disconnect
08:41:03.323 > Fetch inverter: 116491433252
08:41:03.378 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F 8F 00 00 00 00 00 00 00 00 A1 47 90
08:41:03.426 > Interrupt received
08:41:03.495 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:41:03.530 > Interrupt received
08:41:03.576 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 04 6A | -31 dBm
08:41:03.622 > Interrupt received
08:41:03.664 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:03.710 > Interrupt received
08:41:03.749 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5C 13 8B 00 00 00 00 00 00 00 00 00 47 93 | -31 dBm
08:41:03.796 > Interrupt received
08:41:03.844 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 4B 51 8B | -31 dBm
08:41:03.890 > RX Period End
08:41:03.932 > Success
08:41:03.970 > [DPL::updateInverter] Starting inverter...
08:41:04.012 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:04.054 > Interrupt received
08:41:04.102 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:04.314 > PowerMeterClass: TotalPower: 676.20
08:41:05.961 > RX Period End
08:41:06.002 > Success
08:41:06.040 > Fetch inverter: 114483761097
08:41:06.080 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F 92 00 00 00 00 00 00 00 00 F1 D2 88
08:41:06.119 > Interrupt received
08:41:06.169 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 48 03 B0 03 CC 0C 18 0C 77 00 00 C2 | -46 dBm
08:41:06.210 > Interrupt received
08:41:06.255 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 BE 00 00 DF FF 00 3B 00 3E 09 54 13 8B 17 42 61 | -46 dBm
08:41:06.300 > Interrupt received
08:41:06.340 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 03 00 F9 03 E7 00 79 00 01 E1 78 AD | -45 dBm
08:41:06.514 > RX Period End
08:41:06.564 > Success
08:41:06.958 > Fetch inverter: 116491433252
08:41:07.011 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F 93 00 00 00 00 00 00 00 00 61 DF D4
08:41:07.054 > Interrupt received
08:41:07.104 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 77 00 03 00 01 00 0D 00 04 00 00 1A | -31 dBm
08:41:07.168 > Interrupt received
08:41:07.200 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 04 69 | -31 dBm
08:41:07.241 > Interrupt received
08:41:07.281 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:07.331 > Interrupt received
08:41:07.391 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5E 13 8B 00 00 00 00 00 00 00 00 00 47 91 | -31 dBm
08:41:07.435 > Interrupt received
08:41:07.487 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 3E 35 9A | -31 dBm
08:41:07.531 > RX Period End
08:41:07.581 > Success
08:41:07.621 > [DPL::updateInverter] Starting inverter...
08:41:07.661 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:07.701 > [ 6066.822] DPL: waiting for a start/stop/restart command to complete
08:41:07.744 > Interrupt received
08:41:07.781 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:09.589 > RX Period End
08:41:09.635 > Success
08:41:09.685 > Fetch inverter: 114483761097
08:41:09.719 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F 95 00 00 00 00 00 00 00 00 C1 F4 99
08:41:09.767 > Interrupt received
08:41:09.811 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 47 03 BF 03 DD 0C 4F 0C A4 00 00 57 | -46 dBm
08:41:09.853 > Interrupt received
08:41:09.891 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 BF 00 00 DF FF 00 3C 00 3E 09 55 13 8C 17 A1 82 | -46 dBm
08:41:09.931 > Interrupt received
08:41:09.971 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 00 FD 03 E7 00 7A 00 01 5B 9D F3 | -46 dBm
08:41:10.153 > RX Period End
08:41:10.191 > Success
08:41:10.584 > Fetch inverter: 116491433252
08:41:10.639 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F 96 00 00 00 00 00 00 00 00 31 E0 BE
08:41:10.737 > Interrupt received
08:41:10.770 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 75 00 03 00 01 00 0C 00 04 00 00 18 | -31 dBm
08:41:10.811 > Interrupt received
08:41:10.859 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 74 01 71 00 04 68 | -31 dBm
08:41:10.901 > Interrupt received
08:41:10.939 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:10.983 > Interrupt received
08:41:11.019 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5A 13 8B 00 00 00 00 00 00 00 00 00 47 95 | -31 dBm
08:41:11.065 > Interrupt received
08:41:11.113 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 6F 17 E9 | -31 dBm
08:41:11.164 > RX Period End
08:41:11.211 > Success
08:41:11.251 > [DPL::updateInverter] Starting inverter...
08:41:11.297 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:11.339 > Interrupt received
08:41:11.381 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:13.224 > RX Period End
08:41:13.271 > Success
08:41:13.310 > Fetch inverter: 114483761097
08:41:13.350 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F 99 00 00 00 00 00 00 00 00 C1 A1 C0
08:41:13.394 > Interrupt received
08:41:13.447 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 47 02 B6 02 C2 08 E5 09 0B 00 00 45 | -47 dBm
08:41:13.490 > Interrupt received
08:41:13.532 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 B6 03 E8 00 7A 00 01 C8 4E F2 | -46 dBm
08:41:13.832 > RX Period End
08:41:13.870 > Middle missing
08:41:13.912 > Request retransmit: 2
08:41:13.950 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 82 D3
08:41:13.994 > Interrupt received
08:41:14.042 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 BF 00 00 DF FF 00 3C 00 3E 09 52 13 8B 10 FD D9 | -46 dBm
08:41:14.086 > RX Period End
08:41:14.131 > Success
08:41:14.176 > [DPL::updateInverter] timeout, state transition pending: yes, limit pending: no
08:41:14.224 > [ 6073.308] DPL: waiting for sufficiently recent inverter data
08:41:14.271 > Fetch inverter: 116491433252
08:41:14.317 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F 9A 00 00 00 00 00 00 00 00 31 B5 E7
08:41:14.430 > PowerMeterClass: TotalPower: 1426.39
08:41:14.478 > Interrupt received
08:41:14.520 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 73 01 72 00 03 00 01 00 0C 00 05 00 00 1B | -31 dBm
08:41:14.562 > Interrupt received
08:41:14.600 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 D5 49 0D | -31 dBm
08:41:14.837 > RX Period End
08:41:14.888 > Middle missing
08:41:14.930 > Request retransmit: 2
08:41:14.980 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 82 13
08:41:15.022 > Interrupt received
08:41:15.062 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 72 01 6E 00 05 70 | -31 dBm
08:41:15.100 > RX Period End
08:41:15.140 > Middle missing
08:41:15.191 > Request retransmit: 3
08:41:15.230 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 83 12
08:41:15.270 > Interrupt received
08:41:15.314 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:15.371 > RX Period End
08:41:15.412 > Middle missing
08:41:15.450 > Request retransmit: 4
08:41:15.492 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 84 15
08:41:15.534 > Interrupt received
08:41:15.580 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 56 13 8B 00 00 00 00 00 00 00 00 00 47 99 | -31 dBm
08:41:15.620 > RX Period End
08:41:15.660 > Success
08:41:15.702 > [DPL::loop] ******************* ENTER **********************
08:41:15.740 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6074 s, ignore: no
08:41:15.780 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 37.10 V, returning: 37.10V
08:41:15.820 > [DPL::loop] dcVoltage: 37.10 V, loadCorrectedVoltage: 37.10 V, StartTH: 1.00 V, StopTH: 0.00 V
08:41:15.860 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
08:41:15.900 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:41:15.940 > [DPL::loop] battery discharging allowed, PowerMeter: 1426 W, target consumption: -200 W
08:41:15.982 > [DPL::setNewPowerLimit] calculated: 1626 W, requesting: 1626 W, reported: 60 W, diff: 1566 W, hysteresis: 25 W
08:41:16.022 > [DPL::updateInverter] sending limit of 81.3 % (1626 W respectively), max output is 2000 W
08:41:16.060 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 03 2D 00 01 ED 50 CD
08:41:16.100 > [ 6074.611] DPL: waiting for a power limit command to complete
08:41:16.140 > Interrupt received
08:41:16.179 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -31 dBm
08:41:17.384 > RX Period End
08:41:17.430 > Success
08:41:17.470 > Fetch inverter: 114483761097
08:41:17.512 > [DPL:updateInverter] actual limit is 81.0 % (1620 W respectively), effective 2064 ms after update started, requested were 81.3 %
08:41:17.552 > [DPL::updateInverter] Starting inverter...
08:41:17.598 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F 9D 00 00 00 00 00 00 00 00 01 93 36
08:41:17.640 > [ 6076.702] DPL: waiting for a start/stop/restart command to complete
08:41:17.680 > Interrupt received
08:41:17.722 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 4A 01 47 02 89 02 A2 08 5F 08 9E 00 00 36 | -49 dBm
08:41:17.761 > Interrupt received
08:41:17.800 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 BF 00 00 E0 00 00 3C 00 3F 09 4C 13 8B 10 17 EC | -46 dBm
08:41:17.848 > Interrupt received
08:41:17.894 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 AD 03 E8 00 7A 00 01 29 E3 A5 | -46 dBm
08:41:17.951 > RX Period End
08:41:17.996 > Success
08:41:18.144 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:18.187 > Interrupt received
08:41:18.231 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:20.016 > RX Period End
08:41:20.051 > Success
08:41:20.090 > Fetch inverter: 116491433252
08:41:20.135 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F A0 00 00 00 00 00 00 00 00 90 9F 56
08:41:20.183 > Interrupt received
08:41:20.221 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 74 01 74 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:41:20.262 > Interrupt received
08:41:20.301 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 6F 00 05 70 | -31 dBm
08:41:20.340 > Interrupt received
08:41:20.380 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 01 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E3 | -31 dBm
08:41:20.421 > Interrupt received
08:41:20.460 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 52 13 8B 00 00 00 00 00 00 00 00 00 47 9D | -29 dBm
08:41:20.503 > Interrupt received
08:41:20.541 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 52 51 92 | -31 dBm
08:41:20.584 > RX Period End
08:41:20.639 > Success
08:41:20.683 > [DPL::updateInverter] Starting inverter...
08:41:20.722 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:20.768 > Interrupt received
08:41:20.810 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:22.648 > RX Period End
08:41:22.689 > Success
08:41:22.728 > Fetch inverter: 114483761097
08:41:22.770 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F A2 00 00 00 00 00 00 00 00 F0 86 ED
08:41:22.808 > Interrupt received
08:41:22.850 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 4A 01 47 03 5C 03 82 0B 17 0B 7E 00 00 6B | -46 dBm
08:41:22.891 > Interrupt received
08:41:22.932 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C0 00 00 E0 00 00 3D 00 3F 09 4C 13 8B 15 63 E3 | -46 dBm
08:41:22.976 > Interrupt received
08:41:23.020 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 E5 03 E7 00 7B 00 01 CD 71 91 | -46 dBm
08:41:23.221 > RX Period End
08:41:23.260 > Success
08:41:23.651 > Fetch inverter: 116491433252
08:41:23.708 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F A3 00 00 00 00 00 00 00 00 60 8B B1
08:41:23.750 > Interrupt received
08:41:23.788 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:41:23.830 > Interrupt received
08:41:23.868 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 71 00 05 68 | -31 dBm
08:41:23.909 > Interrupt received
08:41:23.951 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:24.000 > Interrupt received
08:41:24.038 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 51 13 8B 00 00 00 00 00 00 00 00 00 47 9E | -31 dBm
08:41:24.081 > Interrupt received
08:41:24.121 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 1B 4F C5 | -31 dBm
08:41:24.210 > RX Period End
08:41:24.250 > Success
08:41:24.290 > [DPL::updateInverter] Starting inverter...
08:41:24.331 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:24.368 > Interrupt received
08:41:24.413 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:24.528 > PowerMeterClass: TotalPower: 1246.94
08:41:26.285 > RX Period End
08:41:26.324 > Success
08:41:26.368 > Fetch inverter: 114483761097
08:41:26.410 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F A6 00 00 00 00 00 00 00 00 30 B4 1B
08:41:26.448 > Interrupt received
08:41:26.488 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 4A 01 47 03 AD 03 DB 0C 28 0C 9E 00 00 1C | -49 dBm
08:41:26.532 > Interrupt received
08:41:26.571 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C0 00 00 E0 00 00 3D 00 3F 09 52 13 8B 17 76 EA | -49 dBm
08:41:26.610 > Interrupt received
08:41:26.651 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 01 00 FB 03 E7 00 7B 00 01 5B B4 D9 | -46 dBm
08:41:26.848 > RX Period End
08:41:26.890 > Success
08:41:27.275 > Fetch inverter: 116491433252
08:41:27.334 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F A7 00 00 00 00 00 00 00 00 A0 B9 47
08:41:27.383 > Interrupt received
08:41:27.431 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 77 00 03 00 01 00 0D 00 04 00 00 1A | -31 dBm
08:41:27.469 > Interrupt received
08:41:27.511 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 04 69 | -31 dBm
08:41:27.561 > Interrupt received
08:41:27.601 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:27.639 > Interrupt received
08:41:27.685 > Interrupt received
08:41:27.734 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 BC 33 1E | -31 dBm
08:41:27.779 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 BC 33 1E | -31 dBm
08:41:27.887 > RX Period End
08:41:27.929 > Middle missing
08:41:27.973 > Request retransmit: 4
08:41:28.019 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 84 15
08:41:28.085 > Interrupt received
08:41:28.138 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5A 13 8A 00 00 00 00 00 00 00 00 00 47 94 | -31 dBm
08:41:28.187 > RX Period End
08:41:28.231 > Success
08:41:28.274 > [DPL::updateInverter] Starting inverter...
08:41:28.319 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:28.359 > [ 6087.293] DPL: waiting for a start/stop/restart command to complete
08:41:28.403 > Interrupt received
08:41:28.453 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:30.055 > RX Period End
08:41:30.089 > Success
08:41:30.133 > Fetch inverter: 114483761097
08:41:30.223 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F AA 00 00 00 00 00 00 00 00 30 E1 42
08:41:30.259 > Interrupt received
08:41:30.307 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 49 01 47 03 C0 03 E5 0C 5C 0C BE 00 00 18 | -46 dBm
08:41:30.351 > Interrupt received
08:41:30.389 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C0 00 00 E0 01 00 3D 00 40 09 54 13 8A 17 C6 23 | -46 dBm
08:41:30.433 > Interrupt received
08:41:30.491 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 FE 03 E8 00 7B 00 01 C5 68 90 | -48 dBm
08:41:30.622 > RX Period End
08:41:30.733 > Success
08:41:31.060 > Fetch inverter: 116491433252
08:41:31.113 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F AB 00 00 00 00 00 00 00 00 A0 EC 1E
08:41:31.184 > Interrupt received
08:41:31.221 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:41:31.269 > Interrupt received
08:41:31.310 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 04 69 | -31 dBm
08:41:31.349 > Interrupt received
08:41:31.393 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:31.449 > Interrupt received
08:41:31.489 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5F 13 8A 00 00 00 00 00 00 00 00 00 47 91 | -31 dBm
08:41:31.536 > Interrupt received
08:41:31.581 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 7F 0B E5 | -31 dBm
08:41:31.625 > RX Period End
08:41:31.670 > Success
08:41:31.718 > [DPL::updateInverter] Starting inverter...
08:41:31.759 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:31.807 > Interrupt received
08:41:31.855 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:33.688 > RX Period End
08:41:33.811 > Success
08:41:33.856 > Fetch inverter: 114483761097
08:41:33.906 > Request SystemConfigPara
08:41:33.958 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F AD 00 00 00 00 00 00 00 00 00 C7 53
08:41:34.000 > Interrupt received
08:41:34.046 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 49 01 47 03 9A 03 B7 0B E0 0C 29 00 00 3C | -47 dBm
08:41:34.094 > Interrupt received
08:41:34.143 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C0 00 00 E0 01 00 3D 00 40 09 56 13 8A 16 C4 22 | -46 dBm
08:41:34.188 > Interrupt received
08:41:34.230 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 F3 03 E8 00 7C 00 01 83 49 FD | -46 dBm
08:41:34.276 > RX Period End
08:41:34.328 > Success
08:41:34.380 > TX SystemConfigPara 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 05 00 65 E9 6F AD 00 00 00 00 00 00 00 00 CE C8 9C
08:41:34.428 > Interrupt received
08:41:34.480 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 81 00 01 03 E8 00 00 03 E8 00 00 00 00 00 10 F0 F9 48 | -46 dBm
08:41:34.528 > RX Period End
08:41:34.584 > Success
08:41:34.640 > PowerMeterClass: TotalPower: 1285.15
08:41:34.690 > Fetch inverter: 116491433252
08:41:34.758 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F AE 00 00 00 00 00 00 00 00 F0 D3 74
08:41:34.800 > Interrupt received
08:41:34.844 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 75 00 03 00 01 00 0D 00 04 00 00 19 | -31 dBm
08:41:34.896 > Interrupt received
08:41:34.940 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 71 00 04 69 | -31 dBm
08:41:34.980 > Interrupt received
08:41:35.018 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:35.068 > Interrupt received
08:41:35.114 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5A 13 8A 00 00 00 00 00 00 00 00 00 47 94 | -31 dBm
08:41:35.176 > Interrupt received
08:41:35.230 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 F9 B6 DE | -31 dBm
08:41:35.277 > RX Period End
08:41:35.326 > Success
08:41:35.378 > [DPL::updateInverter] Starting inverter...
08:41:35.425 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:35.480 > Interrupt received
08:41:35.520 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:37.333 > RX Period End
08:41:37.487 > Success
08:41:37.536 > Fetch inverter: 114483761097
08:41:37.591 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F B1 00 00 00 00 00 00 00 00 C0 5F 17
08:41:37.638 > Interrupt received
08:41:37.688 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 4A 01 47 02 ED 03 01 09 A8 09 D5 00 00 4C | -46 dBm
08:41:37.732 > Interrupt received
08:41:37.768 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C1 00 00 E0 01 00 3E 00 40 09 53 13 8A 12 75 90 | -47 dBm
08:41:37.808 > Interrupt received
08:41:37.848 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 C5 03 E7 00 7C 00 01 42 88 C0 | -45 dBm
08:41:37.900 > RX Period End
08:41:37.938 > Success
08:41:38.327 > Fetch inverter: 116491433252
08:41:38.380 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F B2 00 00 00 00 00 00 00 00 30 4B 30
08:41:38.430 > Interrupt received
08:41:38.473 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 74 01 73 00 03 00 01 00 0C 00 05 00 00 1D | -31 dBm
08:41:38.623 > Interrupt received
08:41:38.666 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 6F 00 04 71 | -31 dBm
08:41:38.742 > Interrupt received
08:41:38.778 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:38.818 > Interrupt received
08:41:38.858 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 57 13 8A 00 00 00 00 00 00 00 00 00 47 99 | -31 dBm
08:41:38.898 > Interrupt received
08:41:38.938 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 A9 89 B1 | -31 dBm
08:41:38.980 > RX Period End
08:41:39.023 > Success
08:41:39.070 > [DPL::updateInverter] Starting inverter...
08:41:39.108 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:39.151 > [ 6098.194] DPL: waiting for a start/stop/restart command to complete
08:41:39.190 > Interrupt received
08:41:39.229 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:40.948 > RX Period End
08:41:41.001 > Success
08:41:41.039 > Fetch inverter: 114483761097
08:41:41.079 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F B5 00 00 00 00 00 00 00 00 00 6D E1
08:41:41.119 > Interrupt received
08:41:41.159 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 47 02 95 02 A0 08 7C 08 96 00 00 01 | -45 dBm
08:41:41.203 > Interrupt received
08:41:41.251 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C1 00 00 E0 01 00 3E 00 40 09 4D 13 8B 10 2B D3 | -45 dBm
08:41:41.293 > Interrupt received
08:41:41.345 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 03 00 AD 03 E7 00 7D 00 01 39 E1 BC | -46 dBm
08:41:41.526 > RX Period End
08:41:41.567 > Success
08:41:41.959 > Fetch inverter: 116491433252
08:41:42.013 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F B6 00 00 00 00 00 00 00 00 F0 79 C6
08:41:42.061 > Interrupt received
08:41:42.099 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 73 01 72 00 03 00 01 00 0C 00 05 00 00 1B | -31 dBm
08:41:42.143 > Interrupt received
08:41:42.193 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 72 01 6F 00 05 71 | -31 dBm
08:41:42.245 > Interrupt received
08:41:42.289 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:42.333 > Interrupt received
08:41:42.381 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 55 13 8B 00 00 00 00 00 00 00 00 00 47 9A | -31 dBm
08:41:42.419 > Interrupt received
08:41:42.459 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 44 16 C3 | -31 dBm
08:41:42.517 > RX Period End
08:41:42.559 > Success
08:41:42.601 > [DPL::updateInverter] Starting inverter...
08:41:42.639 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:42.687 > Interrupt received
08:41:42.733 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:44.589 > RX Period End
08:41:44.629 > Success
08:41:44.667 > Fetch inverter: 114483761097
08:41:44.761 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F B8 00 00 00 00 00 00 00 00 90 35 24
08:41:44.803 > PowerMeterClass: TotalPower: 1389.26
08:41:44.853 > Interrupt received
08:41:44.899 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 47 02 AA 02 B8 08 C0 08 E6 00 00 EA | -45 dBm
08:41:45.192 > RX Period End
08:41:45.229 > Last missing
08:41:45.270 > Request retransmit: 2
08:41:45.313 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 82 D3
08:41:45.359 > Interrupt received
08:41:45.399 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C1 00 00 E0 01 00 3E 00 40 09 50 13 8B 10 B7 52 | -46 dBm
08:41:45.465 > RX Period End
08:41:45.509 > Last missing
08:41:45.594 > Request retransmit: 3
08:41:45.632 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 83 D2
08:41:45.671 > [DPL::updateInverter] timeout, state transition pending: yes, limit pending: no
08:41:45.711 > [ 6104.594] DPL: waiting for sufficiently recent inverter data
08:41:45.750 > Interrupt received
08:41:45.794 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 B3 03 E7 00 7D 00 01 51 AE 86 | -45 dBm
08:41:45.839 > RX Period End
08:41:45.887 > Success
08:41:45.944 > Fetch inverter: 116491433252
08:41:45.996 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F B9 00 00 00 00 00 00 00 00 00 38 78
08:41:46.039 > Interrupt received
08:41:46.081 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 74 01 73 00 03 00 01 00 0D 00 05 00 00 1C | -31 dBm
08:41:46.123 > Interrupt received
08:41:46.172 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 6F 00 05 70 | -31 dBm
08:41:46.220 > Interrupt received
08:41:46.258 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:46.308 > Interrupt received
08:41:46.350 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 56 13 8B 00 00 00 00 00 00 00 00 00 47 99 | -31 dBm
08:41:46.388 > Interrupt received
08:41:46.438 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 53 CD 0F | -31 dBm
08:41:46.480 > RX Period End
08:41:46.520 > Success
08:41:46.568 > [DPL::loop] ******************* ENTER **********************
08:41:46.610 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6105 s, ignore: no
08:41:46.650 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 37.20 V, returning: 37.20V
08:41:46.694 > [DPL::loop] dcVoltage: 37.20 V, loadCorrectedVoltage: 37.20 V, StartTH: 1.00 V, StopTH: 0.00 V
08:41:46.740 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
08:41:46.782 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:41:46.820 > [DPL::loop] battery discharging allowed, PowerMeter: 1376 W, target consumption: -200 W
08:41:46.860 > [DPL::setNewPowerLimit] calculated: 1576 W, requesting: 1576 W, reported: 1620 W, diff: 44 W, hysteresis: 25 W
08:41:46.900 > [DPL::updateInverter] sending limit of 78.8 % (1576 W respectively), max output is 2000 W
08:41:46.946 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 03 14 00 01 E0 80 29
08:41:46.994 > [ 6105.645] DPL: waiting for a power limit command to complete
08:41:47.040 > Interrupt received
08:41:47.080 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -31 dBm
08:41:48.426 > RX Period End
08:41:48.488 > Success
08:41:48.528 > Fetch inverter: 114483761097
08:41:48.570 > [DPL:updateInverter] actual limit is 78.0 % (1560 W respectively), effective 2065 ms after update started, requested were 78.8 %
08:41:48.610 > [DPL::updateInverter] Starting inverter...
08:41:48.652 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F BC 00 00 00 00 00 00 00 00 50 07 D2
08:41:48.690 > [ 6107.737] DPL: waiting for a start/stop/restart command to complete
08:41:48.734 > Interrupt received
08:41:48.782 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 47 02 D3 02 E4 09 4A 09 75 00 00 D6 | -48 dBm
08:41:48.820 > Interrupt received
08:41:48.860 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C1 00 00 E0 02 00 3E 00 41 09 4F 13 8B 11 C1 38 | -46 dBm
08:41:48.906 > Interrupt received
08:41:48.956 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 BE 03 E8 00 7D 00 01 EC D7 40 | -46 dBm
08:41:48.998 > RX Period End
08:41:49.040 > Success
08:41:49.080 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:49.118 > Interrupt received
08:41:49.161 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:51.047 > RX Period End
08:41:51.078 > Success
08:41:51.130 > Fetch inverter: 116491433252
08:41:51.176 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F BF 00 00 00 00 00 00 00 00 A0 13 F5
08:41:51.220 > Interrupt received
08:41:51.262 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 74 00 03 00 01 00 0D 00 05 00 00 1A | -31 dBm
08:41:51.300 > Interrupt received
08:41:51.345 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 70 00 05 6F | -31 dBm
08:41:51.388 > Interrupt received
08:41:51.441 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:51.484 > Interrupt received
08:41:51.528 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5D 13 8B 00 00 00 00 00 00 00 00 00 47 92 | -29 dBm
08:41:51.570 > Interrupt received
08:41:51.612 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 67 50 A6 | -31 dBm
08:41:51.650 > RX Period End
08:41:51.688 > Success
08:41:51.730 > [DPL::updateInverter] Starting inverter...
08:41:51.772 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:51.808 > Interrupt received
08:41:51.866 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:53.681 > RX Period End
08:41:53.721 > Success
08:41:53.763 > Fetch inverter: 114483761097
08:41:53.815 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F C1 00 00 00 00 00 00 00 00 02 3A C0
08:41:53.859 > Interrupt received
08:41:53.907 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 47 03 7B 03 95 0B 6B 0B BA 00 00 E1 | -46 dBm
08:41:53.950 > Interrupt received
08:41:53.991 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 EA 03 E7 00 7E 00 01 30 95 82 | -46 dBm
08:41:54.279 > RX Period End
08:41:54.319 > Middle missing
08:41:54.359 > Request retransmit: 2
08:41:54.399 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 82 D3
08:41:54.449 > Interrupt received
08:41:54.489 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C2 00 00 E0 02 00 3F 00 41 09 5B 13 8B 15 EC 07 | -46 dBm
08:41:54.529 > RX Period End
08:41:54.569 > Success
08:41:54.678 > Fetch inverter: 116491433252
08:41:54.739 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F C2 00 00 00 00 00 00 00 00 F2 2E E7
08:41:54.867 > PowerMeterClass: TotalPower: 1238.56
08:41:54.913 > Interrupt received
08:41:54.959 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:41:54.999 > Interrupt received
08:41:55.039 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 0F BE 20 | -31 dBm
08:41:55.290 > RX Period End
08:41:55.339 > Middle missing
08:41:55.379 > Request retransmit: 2
08:41:55.419 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 82 13
08:41:55.459 > Interrupt received
08:41:55.499 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 71 00 05 68 | -31 dBm
08:41:55.545 > RX Period End
08:41:55.589 > Middle missing
08:41:55.629 > Request retransmit: 3
08:41:55.677 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 83 12
08:41:55.719 > Interrupt received
08:41:55.759 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:55.799 > RX Period End
08:41:55.839 > Middle missing
08:41:55.879 > Request retransmit: 4
08:41:55.923 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 84 15
08:41:55.975 > Interrupt received
08:41:56.023 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 60 13 8B 00 00 00 00 00 00 00 00 00 47 AF | -31 dBm
08:41:56.069 > RX Period End
08:41:56.107 > Success
08:41:56.153 > Fetch inverter: 114483761097
08:41:56.203 > [DPL::updateInverter] Starting inverter...
08:41:56.249 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F C3 00 00 00 00 00 00 00 00 62 23 BB
08:41:56.293 > Interrupt received
08:41:56.439 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 49 01 47 03 A1 03 C4 0B F3 0C 51 00 00 1F | -45 dBm
08:41:56.487 > Interrupt received
08:41:56.531 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C2 00 00 E0 02 00 3F 00 41 09 5A 13 8C 16 FB 15 | -46 dBm
08:41:56.569 > Interrupt received
08:41:56.609 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 F5 03 E7 00 7E 00 01 78 B8 F8 | -46 dBm
08:41:56.649 > RX Period End
08:41:56.697 > Success
08:41:56.739 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:56.779 > Interrupt received
08:41:56.821 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:41:58.318 > RX Period End
08:41:58.493 > Success
08:41:58.565 > Fetch inverter: 116491433252
08:41:58.618 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F C6 00 00 00 00 00 00 00 00 32 1C 11
08:41:58.660 > Interrupt received
08:41:58.699 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 75 00 03 00 01 00 0D 00 04 00 00 19 | -31 dBm
08:41:58.740 > Interrupt received
08:41:58.788 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 71 00 04 69 | -31 dBm
08:41:58.838 > Interrupt received
08:41:58.880 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:41:58.936 > Interrupt received
08:41:58.980 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5E 13 8B 00 00 00 00 00 00 00 00 00 47 91 | -31 dBm
08:41:59.020 > Interrupt received
08:41:59.060 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 7B B0 5A | -31 dBm
08:41:59.099 > RX Period End
08:41:59.144 > Success
08:41:59.194 > [DPL::updateInverter] Starting inverter...
08:41:59.238 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:41:59.280 > [ 6118.222] DPL: waiting for a start/stop/restart command to complete
08:41:59.324 > Interrupt received
08:41:59.360 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:00.981 > RX Period End
08:42:01.020 > Success
08:42:01.072 > Fetch inverter: 114483761097
08:42:01.110 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F C9 00 00 00 00 00 00 00 00 C2 5D 6F
08:42:01.148 > Interrupt received
08:42:01.188 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 47 01 47 02 BB 02 C0 08 F5 08 FE 00 00 A1 | -46 dBm
08:42:01.234 > Interrupt received
08:42:01.280 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C2 00 00 E0 03 00 3F 00 42 09 55 13 8B 10 FF 1D | -48 dBm
08:42:01.318 > Interrupt received
08:42:01.364 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 B6 03 E8 00 7E 00 01 39 D9 90 | -46 dBm
08:42:01.548 > RX Period End
08:42:01.660 > Success
08:42:01.984 > Fetch inverter: 116491433252
08:42:02.036 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F CA 00 00 00 00 00 00 00 00 32 49 48
08:42:02.092 > Interrupt received
08:42:02.130 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 71 01 71 00 03 00 01 00 0B 00 04 00 00 1C | -31 dBm
08:42:02.170 > Interrupt received
08:42:02.207 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 70 01 6D 00 05 71 | -31 dBm
08:42:02.260 > Interrupt received
08:42:02.300 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:02.338 > Interrupt received
08:42:02.378 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 59 13 8C 00 00 00 00 00 00 00 00 00 47 91 | -31 dBm
08:42:02.426 > Interrupt received
08:42:02.480 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 F8 72 1B | -31 dBm
08:42:02.548 > RX Period End
08:42:02.588 > Success
08:42:02.628 > [DPL::updateInverter] Starting inverter...
08:42:02.670 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:02.712 > Interrupt received
08:42:02.748 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:04.613 > RX Period End
08:42:04.652 > Success
08:42:04.689 > Fetch inverter: 114483761097
08:42:04.729 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F CC 00 00 00 00 00 00 00 00 92 62 05
08:42:04.768 > Interrupt received
08:42:04.816 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 44 01 9D 01 9D 05 40 05 3E 00 00 AF | -46 dBm
08:42:04.871 > Interrupt received
08:42:04.911 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C2 00 00 E0 03 00 3F 00 42 09 4B 13 8B 09 F1 14 | -46 dBm
08:42:04.965 > Interrupt received
08:42:05.009 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 02 00 6A 03 E7 00 7E 00 01 34 6E FB | -46 dBm
08:42:05.051 > PowerMeterClass: TotalPower: 1603.14
08:42:05.179 > RX Period End
08:42:05.219 > Success
08:42:05.613 > Fetch inverter: 116491433252
08:42:05.669 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F CD 00 00 00 00 00 00 00 00 02 6F 59
08:42:05.725 > Interrupt received
08:42:05.771 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 6C 01 6C 00 02 00 01 00 09 00 05 00 00 1E | -31 dBm
08:42:05.809 > Interrupt received
08:42:05.851 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 6D 01 6A 00 05 6B | -31 dBm
08:42:05.889 > Interrupt received
08:42:05.929 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 14 00 03 00 00 76 97 00 00 E8 E6 00 0E E4 | -31 dBm
08:42:05.973 > Interrupt received
08:42:06.021 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 50 13 8C 00 00 00 00 00 00 00 00 00 47 98 | -31 dBm
08:42:06.058 > Interrupt received
08:42:06.099 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 6E 9C 63 | -31 dBm
08:42:06.178 > RX Period End
08:42:06.216 > Success
08:42:06.260 > [DPL::updateInverter] Starting inverter...
08:42:06.301 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:06.340 > Interrupt received
08:42:06.381 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:08.239 > RX Period End
08:42:08.279 > Success
08:42:08.320 > Fetch inverter: 114483761097
08:42:08.369 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F D0 00 00 00 00 00 00 00 00 52 FA 41
08:42:08.417 > Interrupt received
08:42:08.459 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 43 01 42 01 5B 01 61 04 61 04 75 00 00 FE | -46 dBm
08:42:08.499 > Interrupt received
08:42:08.543 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C2 00 00 E0 03 00 3F 00 42 09 4B 13 8B 08 5F BB | -46 dBm
08:42:08.589 > Interrupt received
08:42:08.637 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 01 00 5A 03 E7 00 7F 00 01 A1 CE FC | -46 dBm
08:42:08.841 > RX Period End
08:42:08.881 > Success
08:42:09.253 > Fetch inverter: 116491433252
08:42:09.299 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F D1 00 00 00 00 00 00 00 00 C2 F7 1D
08:42:09.347 > Interrupt received
08:42:09.397 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 6E 01 6E 00 03 00 01 00 0B 00 06 00 00 1E | -31 dBm
08:42:09.439 > Interrupt received
08:42:09.483 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 6E 01 6B 00 05 69 | -31 dBm
08:42:09.529 > Interrupt received
08:42:09.571 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 01 00 14 00 03 00 00 76 97 00 00 E8 E6 00 0E E5 | -31 dBm
08:42:09.608 > Interrupt received
08:42:09.661 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 51 13 8B 00 00 00 00 00 00 00 00 00 47 9E | -31 dBm
08:42:09.707 > Interrupt received
08:42:09.755 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 54 E8 2D | -31 dBm
08:42:09.811 > RX Period End
08:42:09.849 > Success
08:42:09.889 > [DPL::updateInverter] Starting inverter...
08:42:09.930 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:09.971 > [ 6129.114] DPL: waiting for a start/stop/restart command to complete
08:42:10.011 > Interrupt received
08:42:10.048 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:11.875 > RX Period End
08:42:11.912 > Success
08:42:11.958 > Fetch inverter: 114483761097
08:42:12.002 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F D3 00 00 00 00 00 00 00 00 A2 EE A6
08:42:12.042 > Interrupt received
08:42:12.080 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 46 02 64 02 7F 07 D8 08 29 00 00 3A | -46 dBm
08:42:12.119 > Interrupt received
08:42:12.160 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C3 00 00 E0 03 00 40 00 42 09 53 13 8B 0F 28 AD | -45 dBm
08:42:12.200 > Interrupt received
08:42:12.244 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 A2 03 E8 00 7F 00 01 AD 80 48 | -46 dBm
08:42:12.440 > RX Period End
08:42:12.480 > Success
08:42:12.876 > Fetch inverter: 116491433252
08:42:12.930 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F D4 00 00 00 00 00 00 00 00 92 C8 77
08:42:12.976 > Interrupt received
08:42:13.024 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 74 00 03 00 01 00 0E 00 05 00 00 19 | -31 dBm
08:42:13.098 > Interrupt received
08:42:13.140 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 70 00 05 6F | -31 dBm
08:42:13.179 > Interrupt received
08:42:13.217 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 01 00 13 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:13.265 > Interrupt received
08:42:13.310 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5A 13 8B 00 00 00 00 00 00 00 00 00 47 95 | -31 dBm
08:42:13.436 > Interrupt received
08:42:13.468 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 E9 15 6D | -31 dBm
08:42:13.509 > RX Period End
08:42:13.549 > Success
08:42:13.590 > [DPL::updateInverter] Starting inverter...
08:42:13.634 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:13.680 > Interrupt received
08:42:13.724 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:15.095 > PowerMeterClass: TotalPower: 1217.17
08:42:15.512 > RX Period End
08:42:15.547 > Success
08:42:15.589 > Fetch inverter: 114483761097
08:42:15.627 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F D7 00 00 00 00 00 00 00 00 62 DC 50
08:42:15.671 > Interrupt received
08:42:15.709 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 47 03 6A 03 8C 0B 37 0B 9D 00 00 92 | -46 dBm
08:42:15.749 > Interrupt received
08:42:15.789 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C3 00 00 E0 03 00 40 00 42 09 59 13 8B 15 9E 0B | -46 dBm
08:42:15.829 > Interrupt received
08:42:15.870 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 E7 03 E8 00 7F 00 01 5E 54 2A | -46 dBm
08:42:16.078 > RX Period End
08:42:16.119 > Success
08:42:16.350 > [DPL::updateInverter] timeout, state transition pending: yes, limit pending: no
08:42:16.389 > [ 6135.594] DPL: waiting for sufficiently recent inverter data
08:42:16.508 > Fetch inverter: 116491433252
08:42:16.612 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F D8 00 00 00 00 00 00 00 00 92 9D 2E
08:42:16.650 > Interrupt received
08:42:16.687 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:42:16.738 > Interrupt received
08:42:16.784 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:42:16.839 > Interrupt received
08:42:16.881 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:16.918 > Interrupt received
08:42:16.959 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 60 13 8B 00 00 00 00 00 00 00 00 00 47 AF | -31 dBm
08:42:17.008 > Interrupt received
08:42:17.050 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 9A 41 4A | -31 dBm
08:42:17.091 > RX Period End
08:42:17.141 > Success
08:42:17.179 > [ 6136.325] DPL: waiting for sufficiently recent power meter reading
08:42:17.511 > Fetch inverter: 114483761097
08:42:17.565 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F D9 00 00 00 00 00 00 00 00 02 90 72
08:42:17.616 > Interrupt received
08:42:17.663 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 47 01 47 03 D3 03 EC 0C 84 0C D4 00 00 BE | -47 dBm
08:42:17.710 > Interrupt received
08:42:17.760 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C3 00 00 E0 03 00 40 00 42 09 59 13 8B 18 01 99 | -49 dBm
08:42:17.804 > Interrupt received
08:42:17.850 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 01 00 03 E7 00 7F 00 01 B3 7B 04 | -49 dBm
08:42:18.077 > RX Period End
08:42:18.129 > Success
08:42:18.517 > Fetch inverter: 116491433252
08:42:18.569 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F DA 00 00 00 00 00 00 00 00 F2 84 55
08:42:18.617 > Interrupt received
08:42:18.667 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0E 00 04 00 00 18 | -31 dBm
08:42:18.715 > Interrupt received
08:42:18.765 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 04 69 | -31 dBm
08:42:18.811 > Interrupt received
08:42:18.850 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:18.888 > Interrupt received
08:42:18.928 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5F 13 8B 00 00 00 00 00 00 00 00 00 47 90 | -31 dBm
08:42:18.968 > Interrupt received
08:42:19.009 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 72 F7 14 | -31 dBm
08:42:19.077 > RX Period End
08:42:19.125 > Success
08:42:19.519 > Fetch inverter: 114483761097
08:42:19.575 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F DB 00 00 00 00 00 00 00 00 62 89 09
08:42:19.685 > Interrupt received
08:42:19.720 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 47 01 47 03 D8 03 F2 0C 95 0C E4 00 00 8A | -49 dBm
08:42:19.760 > Interrupt received
08:42:19.800 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C3 00 00 E0 04 00 40 00 43 09 5A 13 8B 18 20 BD | -48 dBm
08:42:19.838 > Interrupt received
08:42:19.882 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 01 01 03 E7 00 80 00 01 B1 D6 55 | -47 dBm
08:42:20.089 > RX Period End
08:42:20.155 > Success
08:42:20.525 > Fetch inverter: 116491433252
08:42:20.577 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F DC 00 00 00 00 00 00 00 00 52 AF D8
08:42:20.628 > Interrupt received
08:42:20.668 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:42:20.708 > Interrupt received
08:42:20.748 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 04 6A | -31 dBm
08:42:20.788 > Interrupt received
08:42:20.830 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:20.872 > Interrupt received
08:42:20.908 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 62 13 8C 00 00 00 00 00 00 00 00 00 47 AA | -29 dBm
08:42:20.948 > Interrupt received
08:42:20.989 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 1C E4 69 | -31 dBm
08:42:21.091 > RX Period End
08:42:21.137 > Success
08:42:21.529 > Fetch inverter: 114483761097
08:42:21.587 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F DD 00 00 00 00 00 00 00 00 C2 A2 84
08:42:21.639 > Interrupt received
08:42:21.678 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 46 01 46 03 D0 03 E3 0C 77 0C B4 00 00 21 | -45 dBm
08:42:21.722 > Interrupt received
08:42:21.770 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C3 00 00 E0 04 00 40 00 43 09 5C 13 8C 17 D6 45 | -45 dBm
08:42:21.812 > Interrupt received
08:42:21.863 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 00 FE 03 E7 00 80 00 01 40 6D E1 | -45 dBm
08:42:22.103 > RX Period End
08:42:22.140 > Success
08:42:22.537 > Fetch inverter: 116491433252
08:42:22.593 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F DE 00 00 00 00 00 00 00 00 32 B6 A3
08:42:22.646 > Interrupt received
08:42:22.688 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 04 00 00 1A | -31 dBm
08:42:22.736 > Interrupt received
08:42:22.778 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 71 00 04 69 | -31 dBm
08:42:22.818 > Interrupt received
08:42:22.860 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:22.908 > Interrupt received
08:42:22.950 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5F 13 8C 00 00 00 00 00 00 00 00 00 47 97 | -31 dBm
08:42:22.988 > Interrupt received
08:42:23.029 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 3D 7E D2 | -31 dBm
08:42:23.098 > RX Period End
08:42:23.140 > Success
08:42:23.542 > Fetch inverter: 114483761097
08:42:23.596 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F DF 00 00 00 00 00 00 00 00 A2 BB FF
08:42:23.640 > Interrupt received
08:42:23.678 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 47 01 47 03 60 03 6B 0B 0B 0B 2D 00 00 FC | -46 dBm
08:42:23.718 > Interrupt received
08:42:23.758 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C4 00 00 E0 04 00 41 00 43 09 55 13 8C 15 0B 95 | -46 dBm
08:42:23.799 > Interrupt received
08:42:23.838 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 E1 03 E8 00 80 00 01 4A 5E CD | -45 dBm
08:42:24.107 > RX Period End
08:42:24.168 > Success
08:42:24.543 > Fetch inverter: 116491433252
08:42:24.600 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F E0 00 00 00 00 00 00 00 00 53 AE E4
08:42:24.651 > Interrupt received
08:42:24.693 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 74 00 03 00 01 00 0D 00 05 00 00 1A | -31 dBm
08:42:24.757 > Interrupt received
08:42:24.847 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 74 01 70 00 04 69 | -29 dBm
08:42:24.891 > Interrupt received
08:42:24.949 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:24.998 > Interrupt received
08:42:25.080 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5D 13 8C 00 00 00 00 00 00 00 00 00 47 95 | -31 dBm
08:42:25.154 > Interrupt received
08:42:25.188 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 64 4A BF | -31 dBm
08:42:25.353 > PowerMeterClass: TotalPower: 1367.14
08:42:25.391 > [DPL::loop] ******************* ENTER **********************
08:42:25.429 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6144 s, ignore: no
08:42:25.469 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 37.40 V, returning: 37.40V
08:42:25.511 > [DPL::loop] dcVoltage: 37.40 V, loadCorrectedVoltage: 37.40 V, StartTH: 1.00 V, StopTH: 0.00 V
08:42:25.547 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
08:42:25.590 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:42:25.627 > [DPL::loop] battery discharging allowed, PowerMeter: 1367 W, target consumption: -200 W
08:42:25.677 > [DPL::setNewPowerLimit] calculated: 1567 W, requesting: 1567 W, reported: 1560 W, diff: 7 W, hysteresis: 25 W
08:42:25.723 > [DPL::updateInverter] Starting inverter...
08:42:25.769 > RX Period End
08:42:25.811 > Success
08:42:25.847 > [ 6144.658] DPL: waiting for a start/stop/restart command to complete
08:42:25.889 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:25.937 > Interrupt received
08:42:25.979 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:27.471 > RX Period End
08:42:27.509 > Success
08:42:27.559 > Fetch inverter: 114483761097
08:42:27.603 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F E3 00 00 00 00 00 00 00 00 A3 BA C3
08:42:27.649 > Interrupt received
08:42:27.695 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 49 01 47 02 F6 03 10 09 BF 0A 03 00 00 87 | -46 dBm
08:42:27.739 > Interrupt received
08:42:27.781 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C4 00 00 E0 04 00 41 00 43 09 54 13 8C 12 B6 2E | -44 dBm
08:42:27.820 > Interrupt received
08:42:27.859 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 01 00 C8 03 E8 00 80 00 01 04 E0 15 | -46 dBm
08:42:28.038 > RX Period End
08:42:28.077 > Success
08:42:28.472 > Fetch inverter: 116491433252
08:42:28.524 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F E4 00 00 00 00 00 00 00 00 93 9C 12
08:42:28.571 > Interrupt received
08:42:28.610 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 74 01 73 00 03 00 01 00 0D 00 04 00 00 1D | -31 dBm
08:42:28.647 > Interrupt received
08:42:28.693 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 6F 00 04 71 | -31 dBm
08:42:28.740 > Interrupt received
08:42:28.783 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:28.827 > Interrupt received
08:42:28.867 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 59 13 8C 00 00 00 00 00 00 00 00 00 47 91 | -31 dBm
08:42:28.909 > Interrupt received
08:42:28.947 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 75 3D D9 | -31 dBm
08:42:29.038 > RX Period End
08:42:29.079 > Success
08:42:29.120 > [DPL::updateInverter] Starting inverter...
08:42:29.163 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:29.203 > Interrupt received
08:42:29.247 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:31.118 > RX Period End
08:42:31.160 > Success
08:42:31.198 > Fetch inverter: 114483761097
08:42:31.244 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F E7 00 00 00 00 00 00 00 00 63 88 35
08:42:31.290 > Interrupt received
08:42:31.328 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 49 01 47 02 DC 02 F9 09 69 09 B9 00 00 2A | -45 dBm
08:42:31.368 > Interrupt received
08:42:31.408 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C4 00 00 E0 05 00 41 00 44 09 53 13 8C 12 1F 86 | -45 dBm
08:42:31.450 > Interrupt received
08:42:31.490 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 03 00 C2 03 E7 00 81 00 01 8C 62 19 | -46 dBm
08:42:31.667 > RX Period End
08:42:31.708 > Success
08:42:32.103 > Fetch inverter: 116491433252
08:42:32.156 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F E8 00 00 00 00 00 00 00 00 93 C9 4B
08:42:32.204 > Interrupt received
08:42:32.247 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 74 01 74 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:42:32.290 > Interrupt received
08:42:32.338 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 6F 00 05 70 | -31 dBm
08:42:32.390 > Interrupt received
08:42:32.440 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:32.480 > Interrupt received
08:42:32.518 > Interrupt received
08:42:32.560 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 D2 BD FE | -31 dBm
08:42:32.598 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 D2 BD FE | -31 dBm
08:42:32.706 > RX Period End
08:42:32.758 > Middle missing
08:42:32.810 > Request retransmit: 4
08:42:32.856 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 84 15
08:42:32.906 > Interrupt received
08:42:32.948 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 58 13 8C 00 00 00 00 00 00 00 00 00 47 90 | -31 dBm
08:42:32.988 > RX Period End
08:42:33.028 > Success
08:42:33.078 > [DPL::updateInverter] Starting inverter...
08:42:33.126 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:33.168 > Interrupt received
08:42:33.208 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:34.882 > RX Period End
08:42:34.930 > Success
08:42:34.972 > Fetch inverter: 114483761097
08:42:35.030 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F EA 00 00 00 00 00 00 00 00 F3 D0 F0
08:42:35.074 > Interrupt received
08:42:35.110 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 47 03 47 03 69 0A C7 0B 28 00 00 1E | -46 dBm
08:42:35.148 > Interrupt received
08:42:35.190 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C4 00 00 E0 05 00 41 00 44 09 54 13 8C 14 C6 5E | -46 dBm
08:42:35.230 > Interrupt received
08:42:35.268 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 DE 03 E8 00 81 00 01 E4 53 50 | -47 dBm
08:42:35.371 > PowerMeterClass: TotalPower: 1320.04
08:42:35.440 > RX Period End
08:42:35.478 > Success
08:42:35.877 > Fetch inverter: 116491433252
08:42:35.964 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F EB 00 00 00 00 00 00 00 00 63 DD AC
08:42:36.014 > Interrupt received
08:42:36.060 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 75 00 03 00 01 00 0D 00 04 00 00 19 | -31 dBm
08:42:36.122 > Interrupt received
08:42:36.176 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 71 00 05 68 | -31 dBm
08:42:36.226 > Interrupt received
08:42:36.268 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:36.320 > Interrupt received
08:42:36.358 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5B 13 8C 00 00 00 00 00 00 00 00 00 47 93 | -31 dBm
08:42:36.404 > Interrupt received
08:42:36.448 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 FF 52 3C | -31 dBm
08:42:36.486 > RX Period End
08:42:36.528 > Success
08:42:36.570 > [DPL::updateInverter] Starting inverter...
08:42:36.608 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:36.648 > [ 6155.745] DPL: waiting for a start/stop/restart command to complete
08:42:36.688 > Interrupt received
08:42:36.729 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:38.508 > RX Period End
08:42:38.629 > Success
08:42:38.667 > Fetch inverter: 114483761097
08:42:38.707 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F EE 00 00 00 00 00 00 00 00 33 E2 06
08:42:38.751 > Interrupt received
08:42:38.789 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 47 01 46 03 95 03 AF 0B B8 0C 09 00 00 5C | -46 dBm
08:42:38.829 > Interrupt received
08:42:38.869 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C5 00 00 E0 05 00 42 00 44 09 54 13 8C 16 80 18 | -47 dBm
08:42:38.909 > Interrupt received
08:42:38.947 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 F1 03 E8 00 81 00 01 CF D4 D3 | -49 dBm
08:42:39.070 > RX Period End
08:42:39.109 > Success
08:42:39.508 > Fetch inverter: 116491433252
08:42:39.559 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F EF 00 00 00 00 00 00 00 00 A3 EF 5A
08:42:39.607 > Interrupt received
08:42:39.655 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:42:39.703 > Interrupt received
08:42:39.749 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 71 00 05 68 | -31 dBm
08:42:39.789 > Interrupt received
08:42:39.831 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:39.869 > Interrupt received
08:42:39.911 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 57 13 8C 00 00 00 00 00 00 00 00 00 47 9F | -31 dBm
08:42:39.963 > Interrupt received
08:42:40.060 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 3B 1A B0 | -31 dBm
08:42:40.097 > RX Period End
08:42:40.139 > Success
08:42:40.183 > [DPL::updateInverter] Starting inverter...
08:42:40.217 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:40.259 > Interrupt received
08:42:40.299 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:42.137 > RX Period End
08:42:42.179 > Success
08:42:42.223 > Fetch inverter: 114483761097
08:42:42.269 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F F2 00 00 00 00 00 00 00 00 F3 7A 42
08:42:42.310 > Interrupt received
08:42:42.349 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 46 03 C0 03 E2 0C 4E 0C AE 00 00 1D | -47 dBm
08:42:42.387 > Interrupt received
08:42:42.431 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C5 00 00 E0 05 00 42 00 44 09 54 13 8C 17 AA 33 | -46 dBm
08:42:42.467 > Interrupt received
08:42:42.509 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 00 FD 03 E7 00 81 00 01 9C E2 B0 | -47 dBm
08:42:42.693 > RX Period End
08:42:42.737 > Success
08:42:43.136 > Fetch inverter: 116491433252
08:42:43.193 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F F3 00 00 00 00 00 00 00 00 63 77 1E
08:42:43.247 > Interrupt received
08:42:43.286 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:42:43.331 > Interrupt received
08:42:43.370 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 04 69 | -31 dBm
08:42:43.409 > Interrupt received
08:42:43.448 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:43.488 > Interrupt received
08:42:43.537 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5E 13 8C 00 00 00 00 00 00 00 00 00 47 96 | -31 dBm
08:42:43.750 > RX Period End
08:42:43.789 > Last missing
08:42:43.830 > Request retransmit: 5
08:42:43.870 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 85 14
08:42:43.908 > Interrupt received
08:42:43.948 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 B9 C3 EB | -31 dBm
08:42:43.988 > RX Period End
08:42:44.032 > Success
08:42:44.082 > [DPL::updateInverter] Starting inverter...
08:42:44.128 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:44.176 > Interrupt received
08:42:44.212 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:45.492 > PowerMeterClass: TotalPower: 1251.00
08:42:45.909 > RX Period End
08:42:45.948 > Success
08:42:45.992 > Fetch inverter: 114483761097
08:42:46.044 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F F5 00 00 00 00 00 00 00 00 C3 5C 53
08:42:46.090 > Interrupt received
08:42:46.130 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 47 01 46 03 DF 03 FC 0C AC 0D 02 00 00 5C | -46 dBm
08:42:46.168 > Interrupt received
08:42:46.210 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C5 00 00 E0 06 00 42 00 45 09 59 13 8C 18 51 C8 | -45 dBm
08:42:46.256 > Interrupt received
08:42:46.301 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 01 04 03 E8 00 82 00 01 46 AE D7 | -49 dBm
08:42:46.479 > RX Period End
08:42:46.520 > Success
08:42:46.914 > Fetch inverter: 116491433252
08:42:46.962 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F F6 00 00 00 00 00 00 00 00 33 48 74
08:42:47.010 > Interrupt received
08:42:47.050 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 77 00 03 00 01 00 0D 00 04 00 00 1A | -31 dBm
08:42:47.096 > Interrupt received
08:42:47.140 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 04 69 | -31 dBm
08:42:47.184 > Interrupt received
08:42:47.218 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:47.258 > Interrupt received
08:42:47.298 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5E 13 8B 00 00 00 00 00 00 00 00 00 47 91 | -31 dBm
08:42:47.342 > Interrupt received
08:42:47.390 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 3E 35 9A | -31 dBm
08:42:47.478 > RX Period End
08:42:47.520 > Success
08:42:47.562 > [DPL::updateInverter] Starting inverter...
08:42:47.608 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:47.648 > [ 6166.779] DPL: waiting for a start/stop/restart command to complete
08:42:47.688 > Interrupt received
08:42:47.746 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:49.538 > RX Period End
08:42:49.578 > Success
08:42:49.617 > Fetch inverter: 114483761097
08:42:49.659 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F F9 00 00 00 00 00 00 00 00 C3 09 0A
08:42:49.698 > Interrupt received
08:42:49.738 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 46 01 46 03 E2 03 FC 0C AE 0C FE 00 00 9F | -47 dBm
08:42:49.782 > Interrupt received
08:42:49.832 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C5 00 00 E0 06 00 42 00 45 09 55 13 8C 18 50 C5 | -49 dBm
08:42:49.882 > Interrupt received
08:42:49.929 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 01 04 03 E8 00 82 00 01 F9 0E C8 | -48 dBm
08:42:50.147 > RX Period End
08:42:50.193 > Success
08:42:50.542 > Fetch inverter: 116491433252
08:42:50.640 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F FA 00 00 00 00 00 00 00 00 33 1D 2D
08:42:50.680 > Interrupt received
08:42:50.719 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 77 00 03 00 01 00 0D 00 04 00 00 1A | -31 dBm
08:42:50.766 > Interrupt received
08:42:50.809 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 04 69 | -31 dBm
08:42:50.849 > Interrupt received
08:42:50.889 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -29 dBm
08:42:50.929 > Interrupt received
08:42:50.967 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 57 13 8C 00 00 00 00 00 00 00 00 00 47 9F | -29 dBm
08:42:51.015 > Interrupt received
08:42:51.059 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 7F F7 19 | -31 dBm
08:42:51.149 > RX Period End
08:42:51.189 > Success
08:42:51.228 > [DPL::updateInverter] Starting inverter...
08:42:51.267 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:51.309 > Interrupt received
08:42:51.349 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:42:53.241 > RX Period End
08:42:53.277 > Success
08:42:53.323 > Fetch inverter: 114483761097
08:42:53.361 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 6F FD 00 00 00 00 00 00 00 00 03 3B FC
08:42:53.400 > Interrupt received
08:42:53.440 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 48 01 46 03 D9 03 FE 0C A0 0D 04 00 00 5D | -46 dBm
08:42:53.479 > Interrupt received
08:42:53.519 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C6 00 00 E0 06 00 43 00 45 09 4D 13 8B 18 48 C0 | -46 dBm
08:42:53.557 > Interrupt received
08:42:53.599 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 01 05 03 E7 00 82 00 01 52 74 12 | -46 dBm
08:42:53.803 > RX Period End
08:42:53.861 > Success
08:42:54.233 > Fetch inverter: 116491433252
08:42:54.295 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 6F FE 00 00 00 00 00 00 00 00 F3 2F DB
08:42:54.351 > Interrupt received
08:42:54.387 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 77 00 03 00 01 00 0D 00 04 00 00 1A | -31 dBm
08:42:54.435 > Interrupt received
08:42:54.481 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 04 69 | -31 dBm
08:42:54.521 > Interrupt received
08:42:54.559 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:42:54.599 > Interrupt received
08:42:54.640 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 51 13 8B 00 00 00 00 00 00 00 00 00 47 9E | -31 dBm
08:42:54.679 > Interrupt received
08:42:54.717 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 3A 7A D1 | -31 dBm
08:42:54.807 > RX Period End
08:42:54.859 > Success
08:42:54.899 > [DPL::updateInverter] Starting inverter...
08:42:54.937 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:42:54.977 > Interrupt received
08:42:55.020 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -29 dBm
08:42:55.364 > [DPL::updateInverter] timeout, state transition pending: yes, limit pending: no
08:42:55.413 > [ 6174.613] DPL: waiting for sufficiently recent power meter reading
08:42:55.672 > PowerMeterClass: TotalPower: 1273.50
08:42:55.709 > [DPL::loop] ******************* ENTER **********************
08:42:55.748 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6174 s, ignore: no
08:42:55.787 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 37.50 V, returning: 37.50V
08:42:55.831 > [DPL::loop] dcVoltage: 37.50 V, loadCorrectedVoltage: 37.50 V, StartTH: 1.00 V, StopTH: 0.00 V
08:42:55.867 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
08:42:55.907 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:42:55.954 > [DPL::loop] battery discharging allowed, PowerMeter: 1274 W, target consumption: -200 W
08:42:56.035 > [DPL::setNewPowerLimit] calculated: 1474 W, requesting: 1474 W, reported: 1560 W, diff: 86 W, hysteresis: 25 W
08:42:56.067 > [DPL::updateInverter] sending limit of 73.7 % (1474 W respectively), max output is 2000 W
08:42:56.107 > [ 6174.972] DPL: waiting for a power limit command to complete
08:42:56.867 > RX Period End
08:42:56.908 > Success
08:42:56.948 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 02 E1 00 01 2E 91 02
08:42:56.990 > Interrupt received
08:42:57.028 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -31 dBm
08:42:58.946 > RX Period End
08:42:58.984 > Success
08:42:59.033 > Fetch inverter: 114483761097
08:42:59.080 > [DPL:updateInverter] actual limit is 73.0 % (1460 W respectively), effective 3259 ms after update started, requested were 73.7 %
08:42:59.117 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 70 03 00 00 00 00 00 00 00 00 C2 42 A5
08:42:59.158 > Interrupt received
08:42:59.199 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 47 01 46 03 DE 04 01 0C AC 0D 0C 00 00 A9 | -49 dBm
08:42:59.238 > Interrupt received
08:42:59.278 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 C6 00 00 E0 07 00 43 00 46 09 4A 13 8B 18 5B D6 | -47 dBm
08:42:59.318 > Interrupt received
08:42:59.364 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 01 06 03 E8 00 82 00 01 AF 86 14 | -47 dBm
08:42:59.512 > RX Period End
08:42:59.548 > Success
08:42:59.937 > Fetch inverter: 116491433252
08:42:59.996 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 70 04 00 00 00 00 00 00 00 00 F2 64 74
08:43:00.038 > Interrupt received
08:43:00.086 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 77 00 03 00 01 00 0D 00 04 00 00 1A | -31 dBm
08:43:00.128 > Interrupt received
08:43:00.167 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 04 69 | -31 dBm
08:43:00.206 > Interrupt received
08:43:00.248 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:43:00.296 > Interrupt received
08:43:00.340 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 4E 13 8B 00 00 00 00 00 00 00 00 00 47 81 | -31 dBm
08:43:00.386 > Interrupt received
08:43:00.436 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 32 25 86 | -31 dBm
08:43:00.497 > RX Period End
08:43:00.546 > Success
08:43:00.588 > [DPL::updateInverter] Starting inverter...
08:43:00.636 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:43:00.678 > [ 6179.805] DPL: waiting for a start/stop/restart command to complete
08:43:00.728 > Interrupt received
08:43:00.778 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:43:02.566 > RX Period End
08:43:02.599 > Success
08:43:02.639 > Fetch inverter: 114483761097

@chrisli01
Copy link

Nochmals getestet… NICHT zugeschaltet.
Per Hand neu gestartet….

RX Period End
08:47:31.084 > Success
08:47:31.124 > Fetch inverter: 116491433252
08:47:31.168 > [DPL:updateInverter] actual limit is 0.0 % (0 W respectively), effective 2101 ms after update started, requested were 0.5 %
08:47:31.214 > [ 6450.294] DPL: waiting for sufficiently recent inverter data
08:47:31.256 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 13 00 00 00 00 00 00 00 00 C7 DE ED
08:47:31.306 > Interrupt received
08:47:31.352 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 05 00 00 1A | -31 dBm
08:47:31.408 > Interrupt received
08:47:31.457 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:47:31.494 > Interrupt received
08:47:31.534 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:47:31.582 > Interrupt received
08:47:31.624 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5B 13 89 00 00 00 00 00 00 00 00 00 48 99 | -31 dBm
08:47:31.666 > Interrupt received
08:47:31.704 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 6D 95 69 | -31 dBm
08:47:31.744 > RX Period End
08:47:31.786 > Success
08:47:31.824 > [ 6450.867] DPL: waiting for sufficiently recent power meter reading
08:47:32.022 > Fetch inverter: 114483761097
08:47:32.082 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 14 00 00 00 00 00 00 00 00 F7 F8 3C
08:47:32.128 > Interrupt received
08:47:32.174 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 46 01 43 03 B5 03 E1 0C 16 0C 89 00 00 1F | -46 dBm
08:47:32.214 > Interrupt received
08:47:32.255 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 D9 00 00 E0 1A 00 56 00 59 09 57 13 89 17 52 C7 | -45 dBm
08:47:32.298 > Interrupt received
08:47:32.344 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 00 F9 03 E7 00 95 00 01 0E A5 75 | -46 dBm
08:47:32.593 > RX Period End
08:47:32.714 > Success
08:47:33.027 > Fetch inverter: 116491433252
08:47:33.080 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 15 00 00 00 00 00 00 00 00 67 F5 60
08:47:33.149 > Interrupt received
08:47:33.192 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 05 00 00 1A | -31 dBm
08:47:33.235 > Interrupt received
08:47:33.278 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:47:33.326 > Interrupt received
08:47:33.364 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:47:33.404 > Interrupt received
08:47:33.444 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 61 13 89 00 00 00 00 00 00 00 00 00 48 A3 | -29 dBm
08:47:33.497 > Interrupt received
08:47:33.534 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 7E 2F C0 | -31 dBm
08:47:33.586 > RX Period End
08:47:33.626 > Success
08:47:34.033 > Fetch inverter: 114483761097
08:47:34.088 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 16 00 00 00 00 00 00 00 00 97 E1 47
08:47:34.163 > Interrupt received
08:47:34.205 > Frame kaputt
08:47:34.252 > Frame kaputt
08:47:34.298 > Interrupt received
08:47:34.347 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 00 FB 03 E7 00 96 00 01 C9 8D 9B | -46 dBm
08:47:34.641 > RX Period End
08:47:34.674 > Middle missing
08:47:34.718 > Request retransmit: 1
08:47:34.764 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 81 D0
08:47:34.808 > Interrupt received
08:47:34.862 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 43 03 C8 03 E8 0C 45 0C 9E 00 00 2D | -46 dBm
08:47:34.906 > RX Period End
08:47:34.947 > Middle missing
08:47:34.997 > Request retransmit: 2
08:47:35.035 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 82 D3
08:47:35.078 > Interrupt received
08:47:35.129 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 D9 00 00 E0 1B 00 56 00 5A 09 5E 13 89 17 92 0C | -46 dBm
08:47:35.177 > RX Period End
08:47:35.215 > Success
08:47:35.258 > Fetch inverter: 116491433252
08:47:35.320 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 17 00 00 00 00 00 00 00 00 07 EC 1B
08:47:35.365 > Interrupt received
08:47:35.405 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 05 00 00 1A | -31 dBm
08:47:35.444 > Interrupt received
08:47:35.485 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 05 68 | -31 dBm
08:47:35.529 > Interrupt received
08:47:35.575 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:47:35.618 > Interrupt received
08:47:35.665 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 63 13 89 00 00 00 00 00 00 00 00 00 48 A1 | -31 dBm
08:47:35.709 > Interrupt received
08:47:35.760 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 CB B6 EC | -31 dBm
08:47:35.807 > RX Period End
08:47:35.845 > Success
08:47:36.040 > Fetch inverter: 114483761097
08:47:36.102 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 18 00 00 00 00 00 00 00 00 F7 AD 65
08:47:36.154 > Interrupt received
08:47:36.187 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 43 03 CC 03 EC 0C 51 0C AC 00 00 0B | -45 dBm
08:47:36.225 > Interrupt received
08:47:36.265 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DA 00 00 E0 1B 00 57 00 5A 09 5E 13 89 17 AA 36 | -46 dBm
08:47:36.305 > Interrupt received
08:47:36.347 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 00 FC 03 E7 00 95 00 01 F3 D8 F0 | -47 dBm
08:47:36.610 > RX Period End
08:47:36.645 > Success
08:47:37.050 > Fetch inverter: 116491433252
08:47:37.109 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 19 00 00 00 00 00 00 00 00 67 A0 39
08:47:37.155 > Interrupt received
08:47:37.197 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 05 00 00 1A | -31 dBm
08:47:37.238 > Interrupt received
08:47:37.285 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 05 68 | -31 dBm
08:47:37.325 > Interrupt received
08:47:37.365 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:47:37.407 > Interrupt received
08:47:37.443 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 63 13 89 00 00 00 00 00 00 00 00 00 48 A1 | -31 dBm
08:47:37.487 > Interrupt received
08:47:37.523 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 CB B6 EC | -31 dBm
08:47:37.615 > RX Period End
08:47:37.658 > Success
08:47:38.054 > Fetch inverter: 114483761097
08:47:38.107 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 1A 00 00 00 00 00 00 00 00 97 B4 1E
08:47:38.156 > Interrupt received
08:47:38.193 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 45 01 43 03 CC 03 F5 0C 5B 0C C9 00 00 7C | -49 dBm
08:47:38.239 > Interrupt received
08:47:38.285 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DA 00 00 E0 1B 00 57 00 5A 09 5C 13 88 17 CF 50 | -46 dBm
08:47:38.325 > Interrupt received
08:47:38.372 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 00 FE 03 E7 00 96 00 01 5C C1 47 | -46 dBm
08:47:38.619 > RX Period End
08:47:38.655 > Success
08:47:39.032 > PowerMeterClass: TotalPower: -274.53
08:47:39.106 > [DPL::loop] ******************* ENTER **********************
08:47:39.150 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6458 s, ignore: no
08:47:39.185 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 37.50 V, returning: 37.50V
08:47:39.223 > [DPL::loop] dcVoltage: 37.50 V, loadCorrectedVoltage: 37.50 V, StartTH: 1.00 V, StopTH: 0.00 V
08:47:39.265 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
08:47:39.305 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:47:39.343 > [DPL::loop] battery discharging allowed, PowerMeter: -275 W, target consumption: -200 W
08:47:39.385 > [DPL::updateInverter] sending limit of 0.5 % (10 W respectively), max output is 2000 W
08:47:39.425 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 00 05 00 01 A1 D0 2A
08:47:39.467 > [ 6458.387] DPL: waiting for a power limit command to complete
08:47:39.503 > Interrupt received
08:47:39.543 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -31 dBm
08:47:41.155 > RX Period End
08:47:41.203 > Success
08:47:41.243 > Fetch inverter: 116491433252
08:47:41.288 > [DPL:updateInverter] actual limit is 0.0 % (0 W respectively), effective 2105 ms after update started, requested were 0.5 %
08:47:41.333 > [ 6460.410] DPL: waiting for sufficiently recent inverter data
08:47:41.376 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 1D 00 00 00 00 00 00 00 00 A7 92 CF
08:47:41.414 > Interrupt received
08:47:41.458 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:47:41.504 > Interrupt received
08:47:41.544 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 05 68 | -31 dBm
08:47:41.592 > Interrupt received
08:47:41.636 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:47:41.674 > Interrupt received
08:47:41.718 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 63 13 89 00 00 00 00 00 00 00 00 00 48 A1 | -31 dBm
08:47:41.770 > Interrupt received
08:47:41.816 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 6E 2E D1 | -31 dBm
08:47:41.856 > RX Period End
08:47:41.895 > Success
08:47:41.936 > [ 6460.984] DPL: waiting for sufficiently recent power meter reading
08:47:42.162 > Fetch inverter: 114483761097
08:47:42.202 > Request SystemConfigPara
08:47:42.248 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 1E 00 00 00 00 00 00 00 00 57 86 E8
08:47:42.294 > Interrupt received
08:47:42.338 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 43 03 DA 03 FE 0C 83 0C E4 00 00 95 | -46 dBm
08:47:42.386 > Interrupt received
08:47:42.426 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DA 00 00 E0 1B 00 57 00 5A 09 5C 13 88 18 0F 9F | -46 dBm
08:47:42.468 > Interrupt received
08:47:42.518 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 01 00 03 E7 00 96 00 01 B4 55 C4 | -46 dBm
08:47:42.724 > RX Period End
08:47:42.764 > Success
08:47:42.808 > TX SystemConfigPara 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 05 00 65 E9 71 1E 00 00 00 00 00 00 00 00 99 89 27
08:47:43.170 > Interrupt received
08:47:43.202 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 81 00 01 03 E8 00 00 03 E8 00 00 00 00 00 10 F0 F9 48 | -46 dBm
08:47:43.244 > RX Period End
08:47:43.286 > Success
08:47:43.326 > Fetch inverter: 116491433252
08:47:43.469 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 1F 00 00 00 00 00 00 00 00 C7 8B B4
08:47:43.518 > Interrupt received
08:47:43.570 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 05 00 00 1A | -31 dBm
08:47:43.614 > Interrupt received
08:47:43.880 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 76 01 72 00 05 68 | -29 dBm
08:47:44.208 > Interrupt received
08:47:44.258 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:47:44.304 > Interrupt received
08:47:44.344 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 64 13 88 00 00 00 00 00 00 00 00 00 48 A7 | -31 dBm
08:47:44.394 > Interrupt received
08:47:44.434 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 48 F3 2A | -31 dBm
08:47:44.482 > RX Period End
08:47:44.524 > Success
08:47:44.564 > Fetch inverter: 114483761097
08:47:44.604 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 20 00 00 00 00 00 00 00 00 36 9E AF
08:47:44.644 > Interrupt received
08:47:44.686 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 45 01 43 03 CF 03 FB 0C 69 0C DB 00 00 51 | -46 dBm
08:47:44.726 > Interrupt received
08:47:44.764 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DA 00 00 E0 1B 00 57 00 5A 09 5F 13 88 17 EE 72 | -46 dBm
08:47:44.814 > Interrupt received
08:47:45.002 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 00 FF 03 E7 00 96 00 01 A6 E2 9F | -46 dBm
08:47:45.044 > RX Period End
08:47:45.084 > Success
08:47:45.170 > Fetch inverter: 116491433252
08:47:45.238 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 21 00 00 00 00 00 00 00 00 A6 93 F3
08:47:45.282 > Interrupt received
08:47:45.328 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:47:45.376 > Interrupt received
08:47:45.414 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:47:45.468 > Interrupt received
08:47:45.522 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -29 dBm
08:47:45.570 > Interrupt received
08:47:45.626 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 60 13 88 00 00 00 00 00 00 00 00 00 48 A3 | -31 dBm
08:47:45.670 > Interrupt received
08:47:45.716 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 5A 74 BF | -31 dBm
08:47:45.758 > RX Period End
08:47:45.806 > Success
08:47:46.176 > Fetch inverter: 114483761097
08:47:46.248 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 22 00 00 00 00 00 00 00 00 56 87 D4
08:47:46.311 > Interrupt received
08:47:46.370 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 45 01 43 03 C0 03 E6 0C 34 0C 97 00 00 52 | -47 dBm
08:47:46.416 > Interrupt received
08:47:46.454 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DA 00 00 E0 1C 00 57 00 5B 09 59 13 88 17 7B E7 | -46 dBm
08:47:46.492 > Interrupt received
08:47:46.542 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 00 FB 03 E7 00 97 00 01 DA 3D 39 | -46 dBm
08:47:46.752 > RX Period End
08:47:46.794 > Success
08:47:47.182 > Fetch inverter: 116491433252
08:47:47.251 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 23 00 00 00 00 00 00 00 00 C6 8A 88
08:47:47.292 > Interrupt received
08:47:47.345 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:47:47.386 > Interrupt received
08:47:47.425 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:47:47.466 > Interrupt received
08:47:47.512 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:47:47.562 > Interrupt received
08:47:47.619 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5C 13 88 00 00 00 00 00 00 00 00 00 48 9F | -31 dBm
08:47:47.666 > Interrupt received
08:47:47.705 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 2E 90 2F | -31 dBm
08:47:47.758 > RX Period End
08:47:47.804 > Success
08:47:48.189 > Fetch inverter: 114483761097
08:47:48.250 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 24 00 00 00 00 00 00 00 00 F6 AC 59
08:47:48.299 > Interrupt received
08:47:48.343 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 45 01 43 03 A3 03 C3 0B D3 0C 28 00 00 4B | -46 dBm
08:47:48.391 > Interrupt received
08:47:48.479 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DB 00 00 E0 1C 00 58 00 5B 09 57 13 88 16 B6 2B | -46 dBm
08:47:48.525 > Interrupt received
08:47:48.565 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 F3 03 E7 00 97 00 01 FA 76 5B | -46 dBm
08:47:48.766 > RX Period End
08:47:48.818 > Success
08:47:49.167 > PowerMeterClass: TotalPower: 1282.69
08:47:49.205 > [DPL::loop] ******************* ENTER **********************
08:47:49.241 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6468 s, ignore: no
08:47:49.285 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 37.40 V, returning: 37.40V
08:47:49.331 > [DPL::loop] dcVoltage: 37.40 V, loadCorrectedVoltage: 37.40 V, StartTH: 1.00 V, StopTH: 0.00 V
08:47:49.377 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
08:47:49.415 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:47:49.455 > [DPL::loop] battery discharging allowed, PowerMeter: 1283 W, target consumption: -200 W
08:47:49.495 > [DPL::setNewPowerLimit] calculated: 1483 W, requesting: 1483 W, reported: 0 W, diff: 1483 W, hysteresis: 25 W
08:47:49.538 > [DPL::updateInverter] sending limit of 74.2 % (1483 W respectively), max output is 2000 W
08:47:49.585 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 02 E5 00 01 EF D0 86
08:47:49.625 > [ 6468.541] DPL: waiting for a power limit command to complete
08:47:49.665 > Interrupt received
08:47:49.705 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -31 dBm
08:47:51.310 > RX Period End
08:47:51.347 > Success
08:47:51.385 > Fetch inverter: 116491433252
08:47:51.433 > [DPL:updateInverter] actual limit is 74.0 % (1480 W respectively), effective 2122 ms after update started, requested were 74.2 %
08:47:51.473 > [DPL::updateInverter] Starting inverter...
08:47:51.515 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 27 00 00 00 00 00 00 00 00 06 B8 7E
08:47:51.555 > [ 6470.631] DPL: waiting for a start/stop/restart command to complete
08:47:51.595 > Interrupt received
08:47:51.638 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 75 00 03 00 01 00 0D 00 05 00 00 18 | -31 dBm
08:47:51.685 > Interrupt received
08:47:51.725 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -29 dBm
08:47:51.765 > Interrupt received
08:47:51.803 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -29 dBm
08:47:51.843 > Interrupt received
08:47:51.887 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 61 13 88 00 00 00 00 00 00 00 00 00 48 A2 | -31 dBm
08:47:51.925 > Interrupt received
08:47:51.967 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 3E 69 C6 | -31 dBm
08:47:52.005 > RX Period End
08:47:52.043 > Success
08:47:52.095 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:47:52.135 > Interrupt received
08:47:52.172 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:47:53.932 > RX Period End
08:47:53.978 > Success
08:47:54.028 > Fetch inverter: 114483761097
08:47:54.076 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 2A 00 00 00 00 00 00 00 00 96 E0 7B
08:47:54.120 > Interrupt received
08:47:54.166 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 45 01 43 03 93 03 B9 0B A3 0C 07 00 00 5E | -46 dBm
08:47:54.207 > Interrupt received
08:47:54.248 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DB 00 00 E0 1C 00 58 00 5B 09 5B 13 88 16 69 F8 | -49 dBm
08:47:54.293 > Interrupt received
08:47:54.338 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 EF 03 E8 00 97 00 01 30 91 61 | -52 dBm
08:47:54.502 > RX Period End
08:47:54.544 > Success
08:47:54.934 > Fetch inverter: 116491433252
08:47:54.992 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 2B 00 00 00 00 00 00 00 00 06 ED 27
08:47:55.038 > Interrupt received
08:47:55.084 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 75 00 03 00 01 00 0D 00 05 00 00 18 | -31 dBm
08:47:55.126 > Interrupt received
08:47:55.168 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:47:55.203 > Interrupt received
08:47:55.244 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:47:55.284 > Interrupt received
08:47:55.324 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 62 13 88 00 00 00 00 00 00 00 00 00 48 A1 | -31 dBm
08:47:55.544 > RX Period End
08:47:55.586 > Last missing
08:47:55.624 > Request retransmit: 5
08:47:55.664 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 85 14
08:47:55.704 > Interrupt received
08:47:55.748 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 3F 2A 84 | -31 dBm
08:47:55.796 > RX Period End
08:47:55.836 > Success
08:47:55.874 > [DPL::updateInverter] Starting inverter...
08:47:55.913 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:47:55.957 > Interrupt received
08:47:56.003 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:47:57.704 > RX Period End
08:47:57.746 > Success
08:47:57.784 > Fetch inverter: 114483761097
08:47:57.828 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 2D 00 00 00 00 00 00 00 00 A6 C6 6A
08:47:57.874 > Interrupt received
08:47:57.916 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 45 01 43 03 99 03 BC 0B B2 0C 10 00 00 57 | -47 dBm
08:47:57.962 > Interrupt received
08:47:58.004 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DB 00 00 E0 1D 00 58 00 5C 09 5A 13 88 16 80 16 | -46 dBm
08:47:58.044 > Interrupt received
08:47:58.084 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 F0 03 E8 00 97 00 01 5E 5B DA | -47 dBm
08:47:58.274 > RX Period End
08:47:58.330 > Success
08:47:58.706 > Fetch inverter: 116491433252
08:47:58.763 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 2E 00 00 00 00 00 00 00 00 56 D2 4D
08:47:58.805 > Interrupt received
08:47:58.854 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:47:58.905 > Interrupt received
08:47:58.935 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:47:59.035 > Interrupt received
08:47:59.037 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:47:59.083 > Interrupt received
08:47:59.142 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 61 13 88 00 00 00 00 00 00 00 00 00 49 A3 | -31 dBm
08:47:59.188 > Interrupt received
08:47:59.245 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 FF 3C 52 | -31 dBm
08:47:59.283 > Websocket: [/livedata][12] connect
08:47:59.324 > PowerMeterClass: TotalPower: 709.73
08:47:59.370 > Websocket: [/livedata][10] disconnect
08:47:59.414 > RX Period End
08:47:59.464 > Success
08:47:59.506 > [DPL::updateInverter] Starting inverter...
08:47:59.554 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:47:59.594 > Interrupt received
08:47:59.638 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:01.351 > RX Period End
08:48:01.403 > Success
08:48:01.445 > Fetch inverter: 114483761097
08:48:01.485 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 31 00 00 00 00 00 00 00 00 66 5E 2E
08:48:01.527 > Interrupt received
08:48:01.565 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 43 03 AA 03 CB 0B E3 0C 40 00 00 13 | -47 dBm
08:48:01.611 > Interrupt received
08:48:01.658 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DC 00 00 E0 1D 00 59 00 5C 09 5B 13 89 16 DC 4C | -46 dBm
08:48:01.707 > Interrupt received
08:48:01.745 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 F4 03 E8 00 97 00 01 E7 AE 92 | -49 dBm
08:48:01.923 > RX Period End
08:48:01.965 > Success
08:48:02.357 > Fetch inverter: 116491433252
08:48:02.411 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 32 00 00 00 00 00 00 00 00 96 4A 09
08:48:02.463 > Interrupt received
08:48:02.513 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:48:02.558 > Interrupt received
08:48:02.609 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:48:02.655 > Interrupt received
08:48:02.695 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:02.738 > Interrupt received
08:48:02.785 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 63 13 88 00 00 00 00 00 00 00 00 00 49 A1 | -31 dBm
08:48:02.831 > Interrupt received
08:48:02.875 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 FE BE D1 | -31 dBm
08:48:02.921 > RX Period End
08:48:02.965 > Success
08:48:03.005 > [DPL::updateInverter] Starting inverter...
08:48:03.044 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:03.087 > [ 6482.238] DPL: waiting for a start/stop/restart command to complete
08:48:03.125 > Interrupt received
08:48:03.164 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:04.991 > RX Period End
08:48:05.025 > Success
08:48:05.064 > Fetch inverter: 114483761097
08:48:05.105 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 35 00 00 00 00 00 00 00 00 A6 6C D8
08:48:05.145 > Interrupt received
08:48:05.185 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 42 03 B5 03 D7 0C 08 0C 65 00 00 D8 | -48 dBm
08:48:05.227 > Interrupt received
08:48:05.264 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DC 00 00 E0 1D 00 59 00 5C 09 5F 13 88 17 22 B6 | -46 dBm
08:48:05.305 > Interrupt received
08:48:05.343 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 F6 03 E8 00 98 00 01 D8 F4 FA | -47 dBm
08:48:05.556 > RX Period End
08:48:05.596 > Success
08:48:05.991 > Fetch inverter: 116491433252
08:48:06.044 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 36 00 00 00 00 00 00 00 00 56 78 FF
08:48:06.098 > Interrupt received
08:48:06.151 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 04 00 00 1A | -31 dBm
08:48:06.195 > Interrupt received
08:48:06.235 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:48:06.279 > Interrupt received
08:48:06.325 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:06.363 > Interrupt received
08:48:06.405 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 65 13 88 00 00 00 00 00 00 00 00 00 48 A6 | -31 dBm
08:48:06.597 > RX Period End
08:48:06.642 > Last missing
08:48:06.682 > Request retransmit: 5
08:48:06.724 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 85 14
08:48:06.762 > Interrupt received
08:48:06.805 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 99 F1 F9 | -31 dBm
08:48:06.846 > RX Period End
08:48:06.884 > Success
08:48:06.926 > [DPL::updateInverter] Starting inverter...
08:48:06.966 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:07.002 > Interrupt received
08:48:07.045 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:08.764 > RX Period End
08:48:08.812 > Success
08:48:08.859 > Fetch inverter: 114483761097
08:48:08.904 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 38 00 00 00 00 00 00 00 00 36 34 1D
08:48:08.944 > Interrupt received
08:48:08.984 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 43 03 9E 03 B8 0B BC 0C 02 00 00 49 | -49 dBm
08:48:09.024 > Interrupt received
08:48:09.065 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DC 00 00 E0 1D 00 59 00 5C 09 5E 13 88 16 7C E8 | -47 dBm
08:48:09.103 > Interrupt received
08:48:09.143 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 F0 03 E8 00 98 00 01 EA DE E4 | -46 dBm
08:48:09.338 > PowerMeterClass: TotalPower: 1300.59
08:48:09.379 > RX Period End
08:48:09.426 > Success
08:48:09.776 > Fetch inverter: 116491433252
08:48:09.822 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 39 00 00 00 00 00 00 00 00 A6 39 41
08:48:09.867 > Interrupt received
08:48:09.916 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 75 00 03 00 01 00 0D 00 05 00 00 18 | -31 dBm
08:48:09.953 > Interrupt received
08:48:09.998 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 04 6A | -31 dBm
08:48:10.046 > Interrupt received
08:48:10.083 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:10.129 > Interrupt received
08:48:10.179 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 64 13 88 00 00 00 00 00 00 00 00 00 49 A6 | -31 dBm
08:48:10.223 > Interrupt received
08:48:10.268 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 3D D1 7D | -31 dBm
08:48:10.330 > RX Period End
08:48:10.374 > Success
08:48:10.418 > [DPL::updateInverter] Starting inverter...
08:48:10.465 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:10.524 > Interrupt received
08:48:10.583 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:12.397 > RX Period End
08:48:12.437 > Success
08:48:12.483 > Fetch inverter: 114483761097
08:48:12.523 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 3C 00 00 00 00 00 00 00 00 F6 06 EB
08:48:12.568 > Interrupt received
08:48:12.614 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 43 03 52 03 6A 0A C8 0B 07 00 00 20 | -46 dBm
08:48:12.654 > Interrupt received
08:48:12.698 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DC 00 00 E0 1E 00 59 00 5D 09 5D 13 88 14 A7 30 | -47 dBm
08:48:12.752 > Interrupt received
08:48:12.793 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 DC 03 E8 00 99 00 01 3A B6 71 | -51 dBm
08:48:13.008 > RX Period End
08:48:13.045 > Success
08:48:13.392 > Fetch inverter: 116491433252
08:48:13.501 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 3D 00 00 00 00 00 00 00 00 66 0B B7
08:48:13.543 > Interrupt received
08:48:13.584 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 74 00 03 00 01 00 0C 00 05 00 00 1B | -31 dBm
08:48:13.624 > Interrupt received
08:48:13.674 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 74 01 71 00 05 69 | -29 dBm
08:48:13.717 > Interrupt received
08:48:13.764 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:13.803 > Interrupt received
08:48:13.877 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 62 13 88 00 00 00 00 00 00 00 00 00 49 A0 | -31 dBm
08:48:13.921 > Interrupt received
08:48:13.965 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 D8 C1 88 | -31 dBm
08:48:14.003 > RX Period End
08:48:14.046 > Success
08:48:14.086 > [DPL::updateInverter] Starting inverter...
08:48:14.124 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:14.164 > [ 6493.316] DPL: waiting for a start/stop/restart command to complete
08:48:14.208 > Interrupt received
08:48:14.244 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:16.068 > RX Period End
08:48:16.104 > Success
08:48:16.144 > Fetch inverter: 114483761097
08:48:16.184 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 40 00 00 00 00 00 00 00 00 34 36 65
08:48:16.228 > Interrupt received
08:48:16.276 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 43 03 0F 03 26 09 EC 0A 2B 00 00 3B | -46 dBm
08:48:16.314 > Interrupt received
08:48:16.362 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DD 00 00 E0 1E 00 5A 00 5D 09 5D 13 88 13 07 95 | -49 dBm
08:48:16.403 > Interrupt received
08:48:16.444 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 CB 03 E8 00 99 00 01 9B C6 B7 | -46 dBm
08:48:16.635 > RX Period End
08:48:16.674 > Success
08:48:17.072 > Fetch inverter: 116491433252
08:48:17.153 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 41 00 00 00 00 00 00 00 00 A4 3B 39
08:48:17.192 > Interrupt received
08:48:17.242 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 74 00 03 00 01 00 0C 00 05 00 00 1B | -31 dBm
08:48:17.299 > Interrupt received
08:48:17.352 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 74 01 71 00 05 69 | -31 dBm
08:48:17.396 > Interrupt received
08:48:17.440 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:17.488 > Interrupt received
08:48:17.534 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 62 13 88 00 00 00 00 00 00 00 00 00 49 A0 | -31 dBm
08:48:17.574 > Interrupt received
08:48:17.619 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 D8 C1 88 | -31 dBm
08:48:17.668 > RX Period End
08:48:17.712 > Success
08:48:17.755 > [DPL::updateInverter] Starting inverter...
08:48:17.804 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:17.847 > Interrupt received
08:48:17.884 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:19.169 > [DPL::updateInverter] timeout, state transition pending: yes, limit pending: no
08:48:19.215 > [ 6498.430] DPL: waiting for sufficiently recent power meter reading
08:48:19.529 > PowerMeterClass: TotalPower: 1326.41
08:48:19.575 > [DPL::loop] ******************* ENTER **********************
08:48:19.615 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6498 s, ignore: no
08:48:19.652 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 37.30 V, returning: 37.30V
08:48:19.693 > [DPL::loop] dcVoltage: 37.30 V, loadCorrectedVoltage: 37.30 V, StartTH: 1.00 V, StopTH: 0.00 V
08:48:19.734 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
08:48:19.773 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:48:19.821 > [DPL::loop] battery discharging allowed, PowerMeter: 1326 W, target consumption: -200 W
08:48:19.864 > [DPL::setNewPowerLimit] calculated: 1526 W, requesting: 1526 W, reported: 1480 W, diff: 46 W, hysteresis: 25 W
08:48:19.904 > [DPL::updateInverter] sending limit of 76.3 % (1526 W respectively), max output is 2000 W
08:48:19.944 > [ 6498.837] DPL: waiting for a power limit command to complete
08:48:19.984 > RX Period End
08:48:20.025 > Success
08:48:20.072 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 02 FB 00 01 E9 B0 FE
08:48:20.116 > Interrupt received
08:48:20.152 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -31 dBm
08:48:21.773 > RX Period End
08:48:21.823 > Success
08:48:21.863 > Fetch inverter: 114483761097
08:48:21.903 > [DPL:updateInverter] actual limit is 76.0 % (1520 W respectively), effective 2226 ms after update started, requested were 76.3 %
08:48:21.943 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 45 00 00 00 00 00 00 00 00 64 09 0F
08:48:21.983 > Interrupt received
08:48:22.023 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 43 01 43 03 49 03 5C 0A A4 0A D9 00 00 B9 | -46 dBm
08:48:22.063 > Interrupt received
08:48:22.103 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DD 00 00 E0 1E 00 5A 00 5D 09 5C 13 88 14 5A CE | -49 dBm
08:48:22.143 > Interrupt received
08:48:22.183 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 D9 03 E8 00 99 00 01 43 91 2A | -46 dBm
08:48:22.334 > RX Period End
08:48:22.383 > Success
08:48:22.752 > Fetch inverter: 116491433252
08:48:22.813 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 46 00 00 00 00 00 00 00 00 94 1D 28
08:48:22.862 > Interrupt received
08:48:22.915 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 74 00 03 00 01 00 0C 00 05 00 00 1B | -31 dBm
08:48:22.963 > Interrupt received
08:48:23.003 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 74 01 71 00 05 69 | -31 dBm
08:48:23.043 > Interrupt received
08:48:23.085 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:23.125 > Interrupt received
08:48:23.163 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 62 13 88 00 00 00 00 00 00 00 00 00 49 A0 | -31 dBm
08:48:23.203 > Interrupt received
08:48:23.243 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 D8 C1 88 | -31 dBm
08:48:23.321 > RX Period End
08:48:23.363 > Success
08:48:23.403 > [DPL::updateInverter] Starting inverter...
08:48:23.445 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:23.485 > [ 6502.638] DPL: waiting for a start/stop/restart command to complete
08:48:23.531 > Interrupt received
08:48:23.583 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:25.383 > RX Period End
08:48:25.431 > Success
08:48:25.478 > Fetch inverter: 114483761097
08:48:25.523 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 49 00 00 00 00 00 00 00 00 64 5C 56
08:48:25.563 > Interrupt received
08:48:25.604 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 43 01 43 03 20 03 34 0A 1E 0A 58 00 00 83 | -46 dBm
08:48:25.645 > Interrupt received
08:48:25.684 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DD 00 00 E0 1F 00 5A 00 5E 09 5D 13 88 13 61 F1 | -46 dBm
08:48:25.996 > RX Period End
08:48:26.033 > Last missing
08:48:26.073 > Request retransmit: 3
08:48:26.127 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 83 D2
08:48:26.173 > Interrupt received
08:48:26.211 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 CE 03 E8 00 9A 00 01 21 2D E0 | -46 dBm
08:48:26.258 > RX Period End
08:48:26.303 > Success
08:48:26.390 > Fetch inverter: 116491433252
08:48:26.441 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 4A 00 00 00 00 00 00 00 00 94 48 71
08:48:26.502 > Interrupt received
08:48:26.546 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 74 01 74 00 03 00 01 00 0C 00 05 00 00 1A | -31 dBm
08:48:26.590 > Interrupt received
08:48:26.634 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 70 00 05 6F | -31 dBm
08:48:26.674 > Interrupt received
08:48:26.714 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 63 13 88 00 00 00 00 00 00 00 00 00 49 A1 | -31 dBm
08:48:26.754 > Interrupt received
08:48:26.802 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 0C 61 FC | -31 dBm
08:48:27.001 > RX Period End
08:48:27.042 > Middle missing
08:48:27.092 > Request retransmit: 3
08:48:27.156 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 83 12
08:48:27.194 > Interrupt received
08:48:27.236 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:27.274 > RX Period End
08:48:27.318 > Success
08:48:27.364 > [DPL::updateInverter] Starting inverter...
08:48:27.408 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:27.458 > Interrupt received
08:48:27.510 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:29.170 > RX Period End
08:48:29.214 > Success
08:48:29.258 > Fetch inverter: 114483761097
08:48:29.304 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 4D 00 00 00 00 00 00 00 00 A4 6E A0
08:48:29.344 > Interrupt received
08:48:29.384 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 42 02 EF 03 07 09 87 09 C5 00 00 7C | -49 dBm
08:48:29.422 > Interrupt received
08:48:29.462 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DE 00 00 E0 1F 00 5B 00 5E 09 4F 13 88 12 47 C6 | -49 dBm
08:48:29.502 > Interrupt received
08:48:29.544 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 C4 03 E8 00 9A 00 01 3B 33 EE | -47 dBm
08:48:29.592 > PowerMeterClass: TotalPower: 1400.18
08:48:29.744 > RX Period End
08:48:29.782 > Success
08:48:30.159 > Fetch inverter: 116491433252
08:48:30.218 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 4E 00 00 00 00 00 00 00 00 54 7A 87
08:48:30.268 > Interrupt received
08:48:30.312 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 73 01 73 00 03 00 01 00 0C 00 05 00 00 1A | -31 dBm
08:48:30.358 > Interrupt received
08:48:30.404 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 6F 00 05 70 | -31 dBm
08:48:30.444 > Interrupt received
08:48:30.482 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 13 00 03 00 00 76 97 00 00 E8 E6 00 0E E3 | -31 dBm
08:48:30.522 > Interrupt received
08:48:30.564 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 53 13 88 00 00 00 00 00 00 00 00 00 49 91 | -31 dBm
08:48:30.604 > Interrupt received
08:48:30.642 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 EA 90 EB | -31 dBm
08:48:30.726 > RX Period End
08:48:30.764 > Success
08:48:30.804 > [DPL::updateInverter] Starting inverter...
08:48:30.842 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:30.884 > Interrupt received
08:48:30.924 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:32.795 > RX Period End
08:48:32.832 > Success
08:48:32.887 > Fetch inverter: 114483761097
08:48:32.937 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 50 00 00 00 00 00 00 00 00 F4 FB 78
08:48:32.982 > Interrupt received
08:48:33.031 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 42 02 CE 02 E3 09 16 09 51 00 00 BD | -46 dBm
08:48:33.080 > Interrupt received
08:48:33.125 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DE 00 00 E0 1F 00 5B 00 5E 09 4E 13 88 11 6E ED | -46 dBm
08:48:33.163 > Interrupt received
08:48:33.203 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 BB 03 E8 00 9A 00 01 17 D0 5E | -49 dBm
08:48:33.355 > RX Period End
08:48:33.395 > Success
08:48:33.795 > Fetch inverter: 116491433252
08:48:33.851 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 51 00 00 00 00 00 00 00 00 64 F6 24
08:48:33.899 > Interrupt received
08:48:33.943 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 74 01 73 00 03 00 01 00 0C 00 05 00 00 1D | -31 dBm
08:48:33.985 > Interrupt received
08:48:34.023 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 70 00 05 6F | -31 dBm
08:48:34.063 > Interrupt received
08:48:34.103 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 13 00 03 00 00 76 97 00 00 E8 E6 00 0E E3 | -31 dBm
08:48:34.148 > Interrupt received
08:48:34.183 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 54 13 88 00 00 00 00 00 00 00 00 00 49 96 | -31 dBm
08:48:34.223 > Interrupt received
08:48:34.263 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 18 72 FB | -31 dBm
08:48:34.367 > RX Period End
08:48:34.407 > Success
08:48:34.455 > [DPL::updateInverter] Starting inverter...
08:48:34.499 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:34.543 > [ 6513.680] DPL: waiting for a start/stop/restart command to complete
08:48:34.583 > Interrupt received
08:48:34.627 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:36.435 > RX Period End
08:48:36.473 > Success
08:48:36.518 > Fetch inverter: 114483761097
08:48:36.563 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 54 00 00 00 00 00 00 00 00 34 C9 8E
08:48:36.603 > Interrupt received
08:48:36.643 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 42 03 0D 03 28 09 E9 0A 32 00 00 2A | -46 dBm
08:48:36.685 > Interrupt received
08:48:36.731 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DE 00 00 E0 1F 00 5B 00 5E 09 51 13 88 13 0A 94 | -47 dBm
08:48:37.037 > RX Period End
08:48:37.082 > Last missing
08:48:37.127 > Request retransmit: 3
08:48:37.196 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 83 D2
08:48:37.238 > Interrupt received
08:48:37.283 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 03 00 CC 03 E7 00 9A 00 01 16 4B BF | -49 dBm
08:48:37.323 > RX Period End
08:48:37.363 > Success
08:48:37.426 > Fetch inverter: 116491433252
08:48:37.483 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 55 00 00 00 00 00 00 00 00 A4 C4 D2
08:48:37.533 > Interrupt received
08:48:37.573 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 74 00 03 00 01 00 0D 00 05 00 00 1A | -31 dBm
08:48:37.613 > Interrupt received
08:48:37.653 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 74 01 71 00 05 69 | -31 dBm
08:48:37.693 > Interrupt received
08:48:37.733 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:37.778 > Interrupt received
08:48:37.823 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 54 13 88 00 00 00 00 00 00 00 00 00 49 96 | -31 dBm
08:48:37.863 > Interrupt received
08:48:37.911 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 75 DC 38 | -31 dBm
08:48:37.997 > RX Period End
08:48:38.036 > Success
08:48:38.082 > [DPL::updateInverter] Starting inverter...
08:48:38.123 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:38.163 > Interrupt received
08:48:38.218 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:39.692 > PowerMeterClass: TotalPower: 1281.75
08:48:40.065 > RX Period End
08:48:40.104 > Success
08:48:40.154 > Fetch inverter: 114483761097
08:48:40.194 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 58 00 00 00 00 00 00 00 00 34 9C D7
08:48:40.238 > Interrupt received
08:48:40.302 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 45 01 42 03 86 03 AC 0B 78 0B D7 00 00 53 | -46 dBm
08:48:40.344 > Interrupt received
08:48:40.384 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DE 00 00 E0 20 00 5B 00 5F 09 53 13 88 16 13 B4 | -46 dBm
08:48:40.422 > Interrupt received
08:48:40.498 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 EC 03 E7 00 9B 00 01 02 04 C2 | -46 dBm
08:48:40.632 > RX Period End
08:48:40.682 > Success
08:48:41.062 > Fetch inverter: 116491433252
08:48:41.116 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 59 00 00 00 00 00 00 00 00 A4 91 8B
08:48:41.164 > Interrupt received
08:48:41.204 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:48:41.244 > Interrupt received
08:48:41.292 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:48:41.334 > Interrupt received
08:48:41.374 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:41.416 > Interrupt received
08:48:41.458 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5A 13 88 00 00 00 00 00 00 00 00 00 49 98 | -31 dBm
08:48:41.527 > Interrupt received
08:48:41.562 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 EC 47 3A | -31 dBm
08:48:41.631 > RX Period End
08:48:41.674 > Success
08:48:41.714 > [DPL::updateInverter] Starting inverter...
08:48:41.756 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:41.792 > Interrupt received
08:48:41.834 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:43.696 > RX Period End
08:48:43.740 > Success
08:48:43.784 > Fetch inverter: 114483761097
08:48:43.822 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 5B 00 00 00 00 00 00 00 00 C4 88 30
08:48:43.868 > Interrupt received
08:48:43.914 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 43 01 42 03 E1 03 FB 0C 88 0C D4 00 00 96 | -45 dBm
08:48:43.952 > Interrupt received
08:48:43.994 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DF 00 00 E0 20 00 5C 00 5F 09 54 13 89 18 04 AD | -45 dBm
08:48:44.034 > Interrupt received
08:48:44.078 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 01 01 03 E7 00 9B 00 01 06 62 4D | -43 dBm
08:48:44.298 > RX Period End
08:48:44.334 > Success
08:48:44.692 > Fetch inverter: 116491433252
08:48:44.805 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 5C 00 00 00 00 00 00 00 00 F4 AE E1
08:48:44.842 > Interrupt received
08:48:44.884 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:48:44.922 > Interrupt received
08:48:44.962 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:48:45.010 > Interrupt received
08:48:45.056 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:45.096 > Interrupt received
08:48:45.137 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5B 13 89 00 00 00 00 00 00 00 00 00 49 98 | -31 dBm
08:48:45.184 > Interrupt received
08:48:45.222 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 08 5C C5 | -31 dBm
08:48:45.296 > RX Period End
08:48:45.346 > Success
08:48:45.382 > [DPL::updateInverter] Starting inverter...
08:48:45.426 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:45.462 > [ 6524.617] DPL: waiting for a start/stop/restart command to complete
08:48:45.506 > Interrupt received
08:48:45.542 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:47.364 > RX Period End
08:48:47.405 > Success
08:48:47.443 > Fetch inverter: 114483761097
08:48:47.485 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 5F 00 00 00 00 00 00 00 00 04 BA C6
08:48:47.523 > Interrupt received
08:48:47.561 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 45 01 42 03 D4 03 FF 0C 71 0C E1 00 00 6D | -46 dBm
08:48:47.605 > Interrupt received
08:48:47.643 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DF 00 00 E0 20 00 5C 00 5F 09 56 13 89 17 FA 5E | -46 dBm
08:48:47.683 > Interrupt received
08:48:47.727 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 01 00 03 E7 00 9B 00 01 87 6E C1 | -46 dBm
08:48:47.933 > RX Period End
08:48:47.973 > Success
08:48:48.369 > Fetch inverter: 116491433252
08:48:48.421 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 60 00 00 00 00 00 00 00 00 F5 AF DD
08:48:48.467 > Interrupt received
08:48:48.518 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:48:48.563 > Interrupt received
08:48:48.605 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:48:48.643 > Interrupt received
08:48:48.687 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:48.733 > Interrupt received
08:48:48.777 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5C 13 89 00 00 00 00 00 00 00 00 00 49 9F | -31 dBm
08:48:48.825 > Interrupt received
08:48:48.863 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 0A 1B 80 | -31 dBm
08:48:48.938 > RX Period End
08:48:48.983 > Success
08:48:49.029 > [DPL::updateInverter] Starting inverter...
08:48:49.073 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:49.113 > Interrupt received
08:48:49.154 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:49.545 > [DPL::updateInverter] timeout, state transition pending: yes, limit pending: no
08:48:49.583 > [ 6528.790] DPL: waiting for sufficiently recent power meter reading
08:48:49.866 > PowerMeterClass: TotalPower: 1239.22
08:48:49.903 > [DPL::loop] ******************* ENTER **********************
08:48:49.943 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6529 s, ignore: no
08:48:49.987 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 37.50 V, returning: 37.50V
08:48:50.035 > [DPL::loop] dcVoltage: 37.50 V, loadCorrectedVoltage: 37.50 V, StartTH: 1.00 V, StopTH: 0.00 V
08:48:50.078 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
08:48:50.127 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:48:50.183 > [DPL::loop] battery discharging allowed, PowerMeter: 1239 W, target consumption: -200 W
08:48:50.223 > [DPL::setNewPowerLimit] calculated: 1439 W, requesting: 1439 W, reported: 1520 W, diff: 81 W, hysteresis: 25 W
08:48:50.261 > [DPL::updateInverter] sending limit of 71.9 % (1439 W respectively), max output is 2000 W
08:48:50.317 > [ 6529.171] DPL: waiting for a power limit command to complete
08:48:50.996 > RX Period End
08:48:51.038 > Success
08:48:51.083 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 02 CF 00 01 27 F1 45
08:48:51.125 > Interrupt received
08:48:51.163 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -31 dBm
08:48:53.080 > RX Period End
08:48:53.114 > Success
08:48:53.154 > Fetch inverter: 114483761097
08:48:53.194 > [DPL:updateInverter] actual limit is 71.0 % (1420 W respectively), effective 3201 ms after update started, requested were 71.9 %
08:48:53.234 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 65 00 00 00 00 00 00 00 00 A5 90 77
08:48:53.274 > Interrupt received
08:48:53.318 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 42 03 DD 04 03 0C 85 0C ED 00 00 66 | -46 dBm
08:48:53.364 > Interrupt received
08:48:53.402 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 DF 00 00 E0 21 00 5C 00 60 09 55 13 89 18 19 8F | -46 dBm
08:48:53.446 > Interrupt received
08:48:53.492 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 05 01 02 03 E7 00 9C 00 01 0F 5F 7D | -47 dBm
08:48:53.652 > RX Period End
08:48:53.816 > Success
08:48:54.062 > Fetch inverter: 116491433252
08:48:54.120 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 66 00 00 00 00 00 00 00 00 55 84 50
08:48:54.167 > Interrupt received
08:48:54.203 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:48:54.241 > Interrupt received
08:48:54.281 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 04 6A | -31 dBm
08:48:54.322 > Interrupt received
08:48:54.362 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:54.403 > Interrupt received
08:48:54.453 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 58 13 89 00 00 00 00 00 00 00 00 00 49 9B | -31 dBm
08:48:54.499 > Interrupt received
08:48:54.544 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 C9 33 6B | -31 dBm
08:48:54.631 > RX Period End
08:48:54.676 > Success
08:48:54.713 > [DPL::updateInverter] Starting inverter...
08:48:54.756 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:54.794 > [ 6533.946] DPL: waiting for a start/stop/restart command to complete
08:48:54.835 > Interrupt received
08:48:54.877 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:48:56.699 > RX Period End
08:48:56.738 > Success
08:48:56.784 > Fetch inverter: 114483761097
08:48:56.824 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 68 00 00 00 00 00 00 00 00 35 C8 B2
08:48:56.865 > Interrupt received
08:48:56.904 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 42 01 42 03 DF 03 F9 0C 7E 0C CB 00 00 42 | -45 dBm
08:48:56.944 > Interrupt received
08:48:56.982 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E0 00 00 E0 21 00 5D 00 60 09 5A 13 89 17 F3 5B | -48 dBm
08:48:57.030 > Interrupt received
08:48:57.071 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 01 01 00 03 E7 00 9C 00 01 63 87 CF | -46 dBm
08:48:57.258 > RX Period End
08:48:57.304 > Success
08:48:57.699 > Fetch inverter: 116491433252
08:48:57.752 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 69 00 00 00 00 00 00 00 00 A5 C5 EE
08:48:57.802 > Interrupt received
08:48:57.852 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 77 01 76 00 03 00 01 00 0D 00 04 00 00 1B | -31 dBm
08:48:57.904 > Interrupt received
08:48:57.954 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:48:57.992 > Interrupt received
08:48:58.036 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:48:58.073 > Interrupt received
08:48:58.111 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5D 13 89 00 00 00 00 00 00 00 00 00 49 9E | -31 dBm
08:48:58.161 > Interrupt received
08:48:58.201 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 0A DA 41 | -31 dBm
08:48:58.265 > RX Period End
08:48:58.302 > Success
08:48:58.344 > [DPL::updateInverter] Starting inverter...
08:48:58.392 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:48:58.433 > Interrupt received
08:48:58.471 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:49:00.029 > PowerMeterClass: TotalPower: 1251.48
08:49:00.329 > RX Period End
08:49:00.362 > Success
08:49:00.402 > Fetch inverter: 114483761097
08:49:00.442 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 6C 00 00 00 00 00 00 00 00 F5 FA 44
08:49:00.484 > Interrupt received
08:49:00.522 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 42 01 42 03 D4 03 EC 0C 57 0C A0 00 00 1E | -49 dBm
08:49:00.571 > Interrupt received
08:49:00.612 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E0 00 00 E0 21 00 5D 00 60 09 5C 13 89 17 A5 0B | -48 dBm
08:49:00.652 > Interrupt received
08:49:00.692 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 FC 03 E8 00 9C 00 01 2E E8 1E | -46 dBm
08:49:00.895 > RX Period End
08:49:00.934 > Success
08:49:01.328 > Fetch inverter: 116491433252
08:49:01.388 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 6D 00 00 00 00 00 00 00 00 65 F7 18
08:49:01.437 > Interrupt received
08:49:01.487 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 04 00 00 1A | -31 dBm
08:49:01.535 > Interrupt received
08:49:01.572 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:49:01.612 > Interrupt received
08:49:01.654 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:49:01.690 > Interrupt received
08:49:01.734 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5E 13 89 00 00 00 00 00 00 00 00 00 49 9D | -31 dBm
08:49:01.772 > Interrupt received
08:49:01.813 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 CB D9 83 | -31 dBm
08:49:01.901 > RX Period End
08:49:01.931 > Success
08:49:01.979 > [DPL::updateInverter] Starting inverter...
08:49:02.031 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:49:02.072 > Interrupt received
08:49:02.113 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:49:03.965 > RX Period End
08:49:04.003 > Success
08:49:04.045 > Fetch inverter: 114483761097
08:49:04.087 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 70 00 00 00 00 00 00 00 00 35 62 00
08:49:04.134 > Interrupt received
08:49:04.172 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 44 01 42 03 C7 03 EE 0C 41 0C A5 00 00 1A | -46 dBm
08:49:04.210 > Interrupt received
08:49:04.256 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E0 00 00 E0 22 00 5D 00 61 09 55 13 89 17 95 30 | -48 dBm
08:49:04.303 > Interrupt received
08:49:04.342 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 FC 03 E8 00 9C 00 01 6D 57 E2 | -45 dBm
08:49:04.525 > RX Period End
08:49:04.567 > Success
08:49:04.957 > Fetch inverter: 116491433252
08:49:05.020 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 71 00 00 00 00 00 00 00 00 A5 6F 5C
08:49:05.072 > Interrupt received
08:49:05.117 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:49:05.224 > Interrupt received
08:49:05.263 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:49:05.304 > Interrupt received
08:49:05.348 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:49:05.394 > Interrupt received
08:49:05.434 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5B 13 89 00 00 00 00 00 00 00 00 00 49 98 | -31 dBm
08:49:05.474 > Interrupt received
08:49:05.515 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 6D 84 78 | -31 dBm
08:49:05.557 > RX Period End
08:49:05.611 > Success
08:49:05.668 > [DPL::updateInverter] Starting inverter...
08:49:05.722 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:49:05.770 > [ 6544.844] DPL: waiting for a start/stop/restart command to complete
08:49:05.828 > Interrupt received
08:49:05.880 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:49:07.596 > RX Period End
08:49:07.635 > Success
08:49:07.673 > Fetch inverter: 114483761097
08:49:07.734 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 73 00 00 00 00 00 00 00 00 C5 76 E7
08:49:07.771 > Interrupt received
08:49:07.814 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 43 01 42 03 CF 03 EF 0C 52 0C AA 00 00 08 | -46 dBm
08:49:07.853 > Interrupt received
08:49:07.893 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E1 00 00 E0 22 00 5E 00 61 09 56 13 88 17 AA 0F | -46 dBm
08:49:07.941 > Interrupt received
08:49:07.991 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 FD 03 E8 00 9D 00 01 02 40 9A | -52 dBm
08:49:08.154 > RX Period End
08:49:08.194 > Success
08:49:08.598 > Fetch inverter: 116491433252
08:49:08.646 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 74 00 00 00 00 00 00 00 00 F5 50 36
08:49:08.709 > Interrupt received
08:49:08.762 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:49:08.804 > Interrupt received
08:49:08.843 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:49:08.881 > Interrupt received
08:49:08.923 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:49:08.963 > Interrupt received
08:49:09.004 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5A 13 88 00 00 00 00 00 00 00 00 00 49 98 | -31 dBm
08:49:09.047 > Interrupt received
08:49:09.102 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 EC 47 3A | -31 dBm
08:49:09.155 > RX Period End
08:49:09.191 > Success
08:49:09.231 > [DPL::updateInverter] Starting inverter...
08:49:09.281 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:49:09.325 > Interrupt received
08:49:09.365 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:49:10.182 > PowerMeterClass: TotalPower: 1252.41
08:49:11.216 > RX Period End
08:49:11.252 > Success
08:49:11.291 > Fetch inverter: 114483761097
08:49:11.341 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 77 00 00 00 00 00 00 00 00 05 44 11
08:49:11.390 > Interrupt received
08:49:11.432 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 43 01 41 03 C5 03 E1 0C 2C 0C 7B 00 00 A0 | -45 dBm
08:49:11.471 > Interrupt received
08:49:11.521 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E1 00 00 E0 22 00 5E 00 61 09 50 13 88 17 59 FA | -46 dBm
08:49:11.561 > Interrupt received
08:49:11.610 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 FA 03 E8 00 9D 00 01 01 80 5E | -45 dBm
08:49:11.791 > RX Period End
08:49:11.847 > Success
08:49:12.225 > Fetch inverter: 116491433252
08:49:12.281 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 78 00 00 00 00 00 00 00 00 F5 05 6F
08:49:12.324 > Interrupt received
08:49:12.362 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 75 00 03 00 01 00 0D 00 05 00 00 18 | -31 dBm
08:49:12.402 > Interrupt received
08:49:12.444 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:49:12.482 > Interrupt received
08:49:12.522 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:49:12.562 > Interrupt received
08:49:12.604 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 53 13 88 00 00 00 00 00 00 00 00 00 49 91 | -31 dBm
08:49:12.644 > Interrupt received
08:49:12.684 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 EB 8A F0 | -31 dBm
08:49:12.793 > RX Period End
08:49:12.834 > Success
08:49:12.875 > [DPL::updateInverter] Starting inverter...
08:49:12.912 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:49:12.954 > Interrupt received
08:49:12.992 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:49:14.856 > RX Period End
08:49:14.898 > Success
08:49:14.942 > Fetch inverter: 114483761097
08:49:14.982 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 7A 00 00 00 00 00 00 00 00 95 1C D4
08:49:15.022 > Interrupt received
08:49:15.062 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 41 01 41 03 D2 03 E3 0C 44 0C 82 00 00 26 | -46 dBm
08:49:15.106 > Interrupt received
08:49:15.152 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E1 00 00 E0 23 00 5E 00 62 09 4E 13 88 17 76 C9 | -48 dBm
08:49:15.192 > Interrupt received
08:49:15.234 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 FC 03 E8 00 9D 00 01 6F 9B 2D | -48 dBm
08:49:15.421 > RX Period End
08:49:15.472 > Success
08:49:15.853 > Fetch inverter: 116491433252
08:49:15.909 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 7B 00 00 00 00 00 00 00 00 05 11 88
08:49:15.962 > Interrupt received
08:49:16.002 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:49:16.042 > Interrupt received
08:49:16.082 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:49:16.127 > Interrupt received
08:49:16.164 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:49:16.202 > Interrupt received
08:49:16.242 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 53 13 88 00 00 00 00 00 00 00 00 00 49 91 | -31 dBm
08:49:16.282 > Interrupt received
08:49:16.322 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 EA 8E F5 | -31 dBm
08:49:16.422 > RX Period End
08:49:16.462 > Success
08:49:16.510 > [DPL::updateInverter] Starting inverter...
08:49:16.562 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:49:16.610 > [ 6555.737] DPL: waiting for a start/stop/restart command to complete
08:49:16.660 > Interrupt received
08:49:16.702 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:49:18.487 > RX Period End
08:49:18.523 > Success
08:49:18.563 > Fetch inverter: 114483761097
08:49:18.603 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 7E 00 00 00 00 00 00 00 00 55 2E 22
08:49:18.643 > Interrupt received
08:49:18.703 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 41 01 41 03 D9 03 EB 0C 5B 0C 9A 00 00 22 | -46 dBm
08:49:18.743 > Interrupt received
08:49:18.785 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E2 00 00 E0 23 00 5F 00 62 09 50 13 88 17 A2 01 | -46 dBm
08:49:18.822 > Interrupt received
08:49:18.863 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 FD 03 E8 00 9E 00 01 3D 94 72 | -46 dBm
08:49:19.052 > RX Period End
08:49:19.093 > Success
08:49:19.486 > Fetch inverter: 116491433252
08:49:19.542 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 7F 00 00 00 00 00 00 00 00 C5 23 7E
08:49:19.591 > Interrupt received
08:49:19.635 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 76 01 76 00 03 00 01 00 0D 00 05 00 00 1B | -31 dBm
08:49:19.673 > Interrupt received
08:49:19.713 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 75 01 72 00 05 6B | -31 dBm
08:49:19.753 > Interrupt received
08:49:19.793 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:49:19.833 > Interrupt received
08:49:19.873 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 58 13 88 00 00 00 00 00 00 00 00 00 49 9A | -31 dBm
08:49:19.913 > Interrupt received
08:49:19.953 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 ED C5 B9 | -31 dBm
08:49:19.995 > [DPL::updateInverter] timeout, state transition pending: yes, limit pending: no
08:49:20.033 > [ 6559.124] DPL: waiting for sufficiently recent inverter data
08:49:20.073 > RX Period End
08:49:20.111 > Success
08:49:20.155 > [ 6559.315] DPL: waiting for sufficiently recent power meter reading
08:49:20.332 > PowerMeterClass: TotalPower: 1259.39
08:49:20.373 > [DPL::loop] ******************* ENTER **********************
08:49:20.411 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6559 s, ignore: no
08:49:20.453 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 37.40 V, returning: 37.40V
08:49:20.493 > [DPL::loop] dcVoltage: 37.40 V, loadCorrectedVoltage: 37.40 V, StartTH: 1.00 V, StopTH: 0.00 V
08:49:20.533 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
08:49:20.573 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:49:20.621 > [DPL::loop] battery discharging allowed, PowerMeter: 1259 W, target consumption: -200 W
08:49:20.663 > [DPL::setNewPowerLimit] calculated: 1459 W, requesting: 1459 W, reported: 1420 W, diff: 39 W, hysteresis: 25 W
08:49:20.703 > [DPL::updateInverter] sending limit of 72.9 % (1459 W respectively), max output is 2000 W
08:49:20.743 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 02 D9 00 01 E3 10 76
08:49:20.785 > [ 6559.692] DPL: waiting for a power limit command to complete
08:49:20.831 > Interrupt received
08:49:20.889 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -31 dBm
08:49:22.461 > RX Period End
08:49:22.507 > Success
08:49:22.553 > Fetch inverter: 114483761097
08:49:22.595 > [DPL:updateInverter] actual limit is 72.0 % (1440 W respectively), effective 2108 ms after update started, requested were 72.9 %
08:49:22.637 > [DPL::updateInverter] Starting inverter...
08:49:22.683 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 82 00 00 00 00 00 00 00 00 51 7F 8B
08:49:22.723 > [ 6561.783] DPL: waiting for a start/stop/restart command to complete
08:49:22.763 > Interrupt received
08:49:22.801 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 41 01 41 03 CB 03 DC 0C 2F 0C 6B 00 00 82 | -46 dBm
08:49:22.843 > Interrupt received
08:49:22.885 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E2 00 00 E0 23 00 5F 00 62 09 50 13 88 17 4C EF | -48 dBm
08:49:22.927 > Interrupt received
08:49:22.971 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 FA 03 E8 00 9E 00 01 96 CE 84 | -47 dBm
08:49:23.015 > RX Period End
08:49:23.051 > Success
08:49:23.101 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:49:23.151 > Interrupt received
08:49:23.193 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:49:25.088 > RX Period End
08:49:25.122 > Success
08:49:25.164 > Fetch inverter: 116491433252
08:49:25.202 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 85 00 00 00 00 00 00 00 00 61 59 5A
08:49:25.244 > Interrupt received
08:49:25.282 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 75 00 03 00 01 00 0C 00 05 00 00 1A | -31 dBm
08:49:25.321 > Interrupt received
08:49:25.362 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 74 01 71 00 05 69 | -31 dBm
08:49:25.402 > Interrupt received
08:49:25.448 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:49:25.492 > Interrupt received
08:49:25.532 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5B 13 88 00 00 00 00 00 00 00 00 00 49 99 | -31 dBm
08:49:25.705 > RX Period End
08:49:25.742 > Last missing
08:49:25.782 > Request retransmit: 5
08:49:25.822 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 85 14
08:49:25.867 > Interrupt received
08:49:25.912 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 0A C5 5E | -31 dBm
08:49:25.958 > RX Period End
08:49:26.003 > Success
08:49:26.048 > [DPL::updateInverter] Starting inverter...
08:49:26.094 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:49:26.142 > Interrupt received
08:49:26.184 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:49:27.859 > RX Period End
08:49:27.892 > Success
08:49:27.938 > Fetch inverter: 114483761097
08:49:27.982 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 87 00 00 00 00 00 00 00 00 01 40 E1
08:49:28.060 > Interrupt received
08:49:28.104 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 40 01 42 03 70 03 7C 0B 05 0B 39 00 00 E3 | -48 dBm
08:49:28.146 > Interrupt received
08:49:28.192 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E2 00 00 E0 24 00 5F 00 63 09 56 13 88 15 11 B0 | -48 dBm
08:49:28.232 > Interrupt received
08:49:28.270 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 E1 03 E7 00 9F 00 01 62 57 F8 | -46 dBm
08:49:28.425 > RX Period End
08:49:28.462 > Success
08:49:28.870 > Fetch inverter: 116491433252
08:49:28.914 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 88 00 00 00 00 00 00 00 00 F1 01 9F
08:49:28.962 > Interrupt received
08:49:29.002 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 75 01 74 00 03 00 01 00 0C 00 05 00 00 1B | -31 dBm
08:49:29.042 > Interrupt received
08:49:29.091 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 74 01 71 00 05 69 | -31 dBm
08:49:29.134 > Interrupt received
08:49:29.172 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:49:29.212 > Interrupt received
08:49:29.258 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 5D 13 88 00 00 00 00 00 00 00 00 00 49 9F | -31 dBm
08:49:29.302 > Interrupt received
08:49:29.344 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 C8 BE E7 | -31 dBm
08:49:29.426 > RX Period End
08:49:29.462 > Success
08:49:29.502 > [DPL::updateInverter] Starting inverter...
08:49:29.550 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:49:29.590 > Interrupt received
08:49:29.642 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:49:30.383 > PowerMeterClass: TotalPower: 1340.17
08:49:31.494 > RX Period End
08:49:31.533 > Success
08:49:31.571 > Fetch inverter: 114483761097
08:49:31.613 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 8B 00 00 00 00 00 00 00 00 01 15 B8
08:49:31.697 > Interrupt received
08:49:31.733 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 40 01 42 03 45 03 51 0A 7D 0A AF 00 00 15 | -46 dBm
08:49:31.781 > Interrupt received
08:49:31.833 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E3 00 00 E0 24 00 60 00 63 09 5A 13 89 14 0D 9E | -46 dBm
08:49:31.871 > Interrupt received
08:49:31.921 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 04 00 D6 03 E7 00 9F 00 01 A9 10 43 | -49 dBm
08:49:32.058 > RX Period End
08:49:32.093 > Success
08:49:32.486 > Fetch inverter: 116491433252
08:49:32.547 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 8C 00 00 00 00 00 00 00 00 31 33 69
08:49:32.591 > Interrupt received
08:49:32.633 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 74 01 74 00 03 00 01 00 0C 00 05 00 00 1A | -31 dBm
08:49:32.673 > Interrupt received
08:49:32.717 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 0B 00 0C 01 73 01 70 00 05 6F | -31 dBm
08:49:32.768 > Interrupt received
08:49:32.817 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 12 00 03 00 00 76 97 00 00 E8 E6 00 0E E2 | -31 dBm
08:49:32.865 > Interrupt received
08:49:32.903 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 0C 09 64 13 89 00 00 00 00 00 00 00 00 00 49 A7 | -31 dBm
08:49:32.943 > Interrupt received
08:49:32.983 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 8F 24 3A | -31 dBm
08:49:33.057 > RX Period End
08:49:33.103 > Success
08:49:33.155 > [DPL::updateInverter] Starting inverter...
08:49:33.183 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
08:49:33.223 > [ 6572.371] DPL: waiting for a start/stop/restart command to complete
08:49:33.267 > Interrupt received
08:49:33.313 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -31 dBm
08:49:35.118 > RX Period End
08:49:35.151 > Success
08:49:35.193 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 02 00 D0 00 86
08:49:35.233 > Interrupt received
08:49:35.281 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 02 00 44 01 93 | -31 dBm
08:49:37.179 > RX Period End
08:49:37.217 > Success
08:49:37.261 > Fetch inverter: 114483761097
08:49:37.301 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 91 00 00 00 00 00 00 00 00 61 A6 71
08:49:37.343 > Interrupt received
08:49:37.388 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 41 01 41 02 8C 02 99 08 30 08 59 00 00 AD | -49 dBm
08:49:37.437 > Interrupt received
08:49:37.484 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E3 00 00 E0 24 00 60 00 63 09 55 13 8A 0F A9 2D | -49 dBm
08:49:37.528 > Interrupt received
08:49:37.580 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 03 00 A7 03 E7 00 9F 00 01 FB F6 81 | -47 dBm
08:49:37.740 > RX Period End
08:49:37.782 > Success
08:49:38.178 > Fetch inverter: 116491433252
08:49:38.234 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 92 00 00 00 00 00 00 00 00 91 B2 56
08:49:38.274 > Interrupt received
08:49:38.316 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 81 0B 00 09 00 50 04 C6 | -31 dBm
08:49:38.753 > RX Period End
08:49:38.794 > ERROR in RealTimeRunData: Received fragment size: 6, min expected size: 66
08:49:38.832 > Packet handling error
08:49:39.187 > Fetch inverter: 114483761097
08:49:39.236 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 93 00 00 00 00 00 00 00 00 01 BF 0A
08:49:39.286 > Interrupt received
08:49:39.332 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 41 01 41 02 60 02 6E 07 A2 07 CE 00 00 B3 | -47 dBm
08:49:39.376 > Interrupt received
08:49:39.428 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E3 00 00 E0 24 00 60 00 63 09 59 13 8A 0E A0 29 | -49 dBm
08:49:39.474 > Interrupt received
08:49:39.512 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 03 00 9C 03 E7 00 9F 00 01 31 36 B0 | -46 dBm
08:49:39.744 > RX Period End
08:49:39.788 > Success
08:49:40.228 > Fetch inverter: 116491433252
08:49:40.270 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 94 00 00 00 00 00 00 00 00 31 99 DB
08:49:40.320 > Interrupt received
08:49:40.362 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 81 0B 00 09 00 50 04 C6 | -31 dBm
08:49:40.483 > PowerMeterClass: TotalPower: 1501.54
08:49:40.760 > RX Period End
08:49:40.808 > ERROR in RealTimeRunData: Received fragment size: 6, min expected size: 66
08:49:40.862 > Packet handling error
08:49:41.192 > Fetch inverter: 114483761097
08:49:41.250 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 95 00 00 00 00 00 00 00 00 A1 94 87
08:49:41.302 > Interrupt received
08:49:41.342 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 41 02 36 02 40 07 11 07 3A 00 00 F2 | -46 dBm
08:49:41.388 > Interrupt received
08:49:41.440 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E3 00 00 E0 24 00 60 00 63 09 58 13 8A 0D 8A 01 | -47 dBm
08:49:41.488 > Interrupt received
08:49:41.542 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 02 00 90 03 E7 00 A0 00 01 1D 78 E0 | -46 dBm
08:49:41.756 > RX Period End
08:49:41.806 > Success
08:49:42.191 > Fetch inverter: 116491433252
08:49:42.250 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 96 00 00 00 00 00 00 00 00 51 80 A0
08:49:42.823 > RX Period End
08:49:42.870 > All missing
08:49:42.920 > Nothing received, resend whole request
08:49:42.973 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 96 00 00 00 00 00 00 00 00 51 80 A0
08:49:43.376 > RX Period End
08:49:43.422 > All missing
08:49:43.462 > Nothing received, resend whole request
08:49:43.502 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 96 00 00 00 00 00 00 00 00 51 80 A0
08:49:43.948 > RX Period End
08:49:43.983 > All missing
08:49:44.023 > Nothing received, resend whole request
08:49:44.065 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 96 00 00 00 00 00 00 00 00 51 80 A0
08:49:44.511 > RX Period End
08:49:44.552 > All missing
08:49:44.594 > Nothing received, resend whole request
08:49:44.633 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 96 00 00 00 00 00 00 00 00 51 80 A0
08:49:45.031 > RX Period End
08:49:45.071 > All missing
08:49:45.113 > Nothing received, resend count exeeded
08:49:45.153 > Fetch inverter: 114483761097
08:49:45.193 > Request SystemConfigPara
08:49:45.233 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 99 00 00 00 00 00 00 00 00 A1 C1 DE
08:49:45.273 > Interrupt received
08:49:45.313 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3D 01 3F 01 AD 01 AF 05 52 05 62 00 00 E1 | -46 dBm
08:49:45.351 > Interrupt received
08:49:45.393 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E3 00 00 E0 25 00 60 00 64 09 53 13 8A 0A 23 A2 | -46 dBm
08:49:45.443 > Interrupt received
08:49:45.491 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 6C 03 E8 00 A0 00 01 25 C4 95 | -46 dBm
08:49:45.597 > RX Period End
08:49:45.631 > Success
08:49:45.673 > TX SystemConfigPara 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 05 00 65 E9 71 99 00 00 00 00 00 00 00 00 6F CE 11
08:49:45.713 > Interrupt received
08:49:45.755 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 81 00 01 03 E8 00 00 03 E8 00 00 00 00 00 10 F0 F9 48 | -46 dBm
08:49:45.857 > RX Period End
08:49:45.893 > Success
08:49:46.029 > Fetch inverter: 116491433252
08:49:46.073 > TX ChannelChangeCommand 868.00 MHz --> 56 91 43 32 52 80 10 26 80 02 15 21 18 14 E8
08:49:46.133 > RX Period End
08:49:46.171 > All missing
08:49:46.211 > Nothing received, resend whole request
08:49:46.253 > TX ChannelChangeCommand 868.00 MHz --> 56 91 43 32 52 80 10 26 80 02 15 21 18 14 E8
08:49:46.293 > RX Period End
08:49:46.330 > All missing
08:49:46.373 > Nothing received, resend whole request
08:49:46.423 > TX ChannelChangeCommand 868.00 MHz --> 56 91 43 32 52 80 10 26 80 02 15 21 18 14 E8
08:49:46.463 > RX Period End
08:49:46.508 > All missing
08:49:46.561 > Nothing received, resend whole request
08:49:46.605 > TX ChannelChangeCommand 868.00 MHz --> 56 91 43 32 52 80 10 26 80 02 15 21 18 14 E8
08:49:46.657 > RX Period End
08:49:46.719 > All missing
08:49:46.763 > Nothing received, resend whole request
08:49:46.801 > TX ChannelChangeCommand 868.00 MHz --> 56 91 43 32 52 80 10 26 80 02 15 21 18 14 E8
08:49:46.845 > RX Period End
08:49:46.885 > All missing
08:49:46.937 > Nothing received, resend count exeeded
08:49:46.991 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 9A 00 00 00 00 00 00 00 00 51 D5 F9
08:49:47.033 > Interrupt received
08:49:47.073 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 4D 01 4B 00 40 00 40 00 CD 00 C9 00 00 13 | -31 dBm
08:49:47.115 > Interrupt received
08:49:47.153 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 00 00 00 01 4F 01 4B 00 40 2A | -31 dBm
08:49:47.191 > Interrupt received
08:49:47.233 > Frame kaputt
08:49:47.272 > Frame kaputt
08:49:47.311 > Interrupt received
08:49:47.355 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 00 09 59 13 8B 02 E9 00 00 00 1F 03 E8 00 49 8B | -31 dBm
08:49:47.401 > Interrupt received
08:49:47.442 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 01 8E 8E 95 | -31 dBm
08:49:47.489 > RX Period End
08:49:47.533 > Middle missing
08:49:47.573 > Request retransmit: 3
08:49:47.613 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 83 12
08:49:47.653 > Interrupt received
08:49:47.691 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 3A 00 CE 00 B4 00 00 76 97 00 00 E8 E6 00 00 BD | -31 dBm
08:49:47.733 > RX Period End
08:49:47.772 > Success
08:49:47.813 > Fetch inverter: 114483761097
08:49:47.851 > [DPL::loop] ******************* ENTER **********************
08:49:47.893 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6586 s, ignore: no
08:49:47.939 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 33.30 V, returning: 33.30V
08:49:47.983 > [DPL::loop] dcVoltage: 33.30 V, loadCorrectedVoltage: 33.37 V, StartTH: 1.00 V, StopTH: 0.00 V
08:49:48.023 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
08:49:48.071 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:49:48.113 > [DPL::loop] battery discharging allowed, PowerMeter: 1538 W, target consumption: -200 W
08:49:48.152 > [DPL::setNewPowerLimit] calculated: 1812 W, requesting: 1700 W, reported: 1440 W, diff: 260 W, hysteresis: 25 W
08:49:48.193 > [DPL::updateInverter] sending limit of 85.0 % (1700 W respectively), max output is 2000 W
08:49:48.233 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 9B 00 00 00 00 00 00 00 00 C1 D8 A5
08:49:48.272 > [ 6586.622] DPL: waiting for a power limit command to complete
08:49:48.315 > Interrupt received
08:49:48.352 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3B 01 3D 01 57 01 5B 04 3B 04 4F 00 00 AF | -49 dBm
08:49:48.393 > Interrupt received
08:49:48.430 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E3 00 00 E0 25 00 60 00 64 09 50 13 8B 08 17 96 | -46 dBm
08:49:48.477 > Interrupt received
08:49:48.523 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 56 03 E8 00 A0 00 01 1B A1 F4 | -46 dBm
08:49:48.561 > RX Period End
08:49:48.601 > Success
08:49:48.643 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 03 52 00 01 35 61 5B
08:49:48.681 > Interrupt received
08:49:48.731 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -31 dBm
08:49:49.944 > RX Period End
08:49:49.985 > Success
08:49:50.023 > Fetch inverter: 116491433252
08:49:50.063 > [DPL:updateInverter] actual limit is 85.0 % (1700 W respectively), effective 2651 ms after update started, requested were 85.0 %
08:49:50.101 > [ 6589.202] DPL: waiting for sufficiently recent inverter data
08:49:50.149 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 9E 00 00 00 00 00 00 00 00 91 E7 0F
08:49:50.199 > Interrupt received
08:49:50.251 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 3E 01 3E 00 56 00 5C 01 14 01 26 00 00 29 | -31 dBm
08:49:50.291 > Interrupt received
08:49:50.335 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 00 00 00 01 40 01 41 00 5F 30 | -31 dBm
08:49:50.375 > Interrupt received
08:49:50.417 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 57 01 32 01 19 00 00 76 97 00 00 E8 E6 00 00 81 | -31 dBm
08:49:50.471 > Interrupt received
08:49:50.514 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 00 09 4E 13 8B 04 4C 00 00 00 2E 03 E8 00 49 0E | -31 dBm
08:49:50.552 > Interrupt received
08:49:50.598 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 01 B4 84 A5 | -31 dBm
08:49:50.644 > PowerMeterClass: TotalPower: 1561.54
08:49:50.740 > RX Period End
08:49:50.782 > Success
08:49:50.838 > [DPL::loop] ******************* ENTER **********************
08:49:50.888 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6589 s, ignore: no
08:49:50.932 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 31.80 V, returning: 31.80V
08:49:50.978 > [DPL::loop] dcVoltage: 31.80 V, loadCorrectedVoltage: 31.91 V, StartTH: 1.00 V, StopTH: 0.00 V
08:49:51.030 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
08:49:51.084 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:49:51.128 > [DPL::loop] battery discharging allowed, PowerMeter: 1562 W, target consumption: -200 W
08:49:51.174 > [DPL::setNewPowerLimit] calculated: 1872 W, requesting: 1700 W, reported: 1700 W, diff: 0 W, hysteresis: 25 W
08:49:51.211 > [ 6589.998] DPL: the system is stable, the last power limit is still valid
08:49:51.253 > TX AlarmData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 11 00 65 E9 71 9E 00 00 00 00 00 00 00 00 4B FC D4
08:49:51.291 > Interrupt received
08:49:51.331 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 81 00 01 80 01 00 01 6E 17 6E 17 00 00 00 00 BA 3E 95 | -31 dBm
08:49:51.373 > [DPL::loop] ******************* ENTER **********************
08:49:51.414 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6590 s, ignore: no
08:49:51.453 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 31.80 V, returning: 31.80V
08:49:51.493 > [DPL::loop] dcVoltage: 31.80 V, loadCorrectedVoltage: 31.91 V, StartTH: 1.00 V, StopTH: 0.00 V
08:49:51.531 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
08:49:51.571 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:49:51.612 > [DPL::loop] battery discharging allowed, PowerMeter: 1562 W, target consumption: -200 W
08:49:51.651 > [DPL::setNewPowerLimit] calculated: 1872 W, requesting: 1700 W, reported: 1700 W, diff: 0 W, hysteresis: 25 W
08:49:51.693 > RX Period End
08:49:51.731 > Success
08:49:51.774 > Fetch inverter: 114483761097
08:49:51.820 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 9F 00 00 00 00 00 00 00 00 01 EA 53
08:49:51.866 > [DPL::loop] ******************* ENTER **********************
08:49:51.912 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6590 s, ignore: no
08:49:51.952 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 31.80 V, returning: 31.80V
08:49:51.992 > [DPL::loop] dcVoltage: 31.80 V, loadCorrectedVoltage: 31.91 V, StartTH: 1.00 V, StopTH: 0.00 V
08:49:52.031 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
08:49:52.072 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:49:52.120 > [DPL::loop] battery discharging allowed, PowerMeter: 1565 W, target consumption: -200 W
08:49:52.165 > [DPL::setNewPowerLimit] calculated: 1875 W, requesting: 1700 W, reported: 1700 W, diff: 0 W, hysteresis: 25 W
08:49:52.202 > Interrupt received
08:49:52.244 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 39 01 3B 01 26 01 2B 03 9B 03 B3 00 00 F6 | -46 dBm
08:49:52.282 > RX Period End
08:49:52.322 > Last missing
08:49:52.362 > Request retransmit: 2
08:49:52.414 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 82 D3
08:49:52.452 > Interrupt received
08:49:52.501 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E3 00 00 E0 25 00 60 00 64 09 44 13 8B 06 EB 70 | -46 dBm
08:49:52.542 > RX Period End
08:49:52.584 > Last missing
08:49:52.628 > Request retransmit: 3
08:49:52.672 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 83 D2
08:49:52.711 > Interrupt received
08:49:52.764 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 01 00 4A 03 E7 00 A0 00 01 37 E0 8B | -46 dBm
08:49:52.802 > RX Period End
08:49:52.841 > Success
08:49:52.892 > Fetch inverter: 116491433252
08:49:52.936 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 A0 00 00 00 00 00 00 00 00 F0 FF 48
08:49:52.982 > Interrupt received
08:49:53.025 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 3D 01 3E 00 56 00 5B 01 11 01 22 00 00 2C | -31 dBm
08:49:53.064 > Interrupt received
08:49:53.101 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 00 00 00 01 40 01 41 00 5E 31 | -31 dBm
08:49:53.141 > Interrupt received
08:49:53.186 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 56 01 2F 01 16 00 00 76 97 00 00 E8 E6 00 00 92 | -31 dBm
08:49:53.227 > Interrupt received
08:49:53.273 > [DPL::loop] ******************* ENTER **********************
08:49:53.315 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6592 s, ignore: no
08:49:53.362 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 31.80 V, returning: 31.80V
08:49:53.411 > [DPL::loop] dcVoltage: 31.80 V, loadCorrectedVoltage: 31.91 V, StartTH: 1.00 V, StopTH: 0.00 V
08:49:53.451 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
08:49:53.500 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:49:53.541 > [DPL::loop] battery discharging allowed, PowerMeter: 1575 W, target consumption: -200 W
08:49:53.588 > [DPL::setNewPowerLimit] calculated: 1885 W, requesting: 1700 W, reported: 1700 W, diff: 0 W, hysteresis: 25 W
08:49:53.632 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 00 09 4B 13 8B 04 41 00 00 00 2D 03 E7 00 49 0A | -31 dBm
08:49:53.672 > RX Period End
08:49:53.715 > Last missing
08:49:53.761 > Request retransmit: 5
08:49:53.801 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 85 14
08:49:53.845 > Interrupt received
08:49:53.893 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 01 54 56 97 | -31 dBm
08:49:53.932 > RX Period End
08:49:53.971 > Success
08:49:54.015 > Fetch inverter: 114483761097
08:49:54.067 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 A1 00 00 00 00 00 00 00 00 60 F2 14
08:49:54.111 > Interrupt received
08:49:54.155 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 39 01 3B 01 1C 01 21 03 7B 03 92 00 00 07 | -46 dBm
08:49:54.201 > Interrupt received
08:49:54.242 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E3 00 00 E0 25 00 60 00 64 09 46 13 8B 06 AE 37 | -46 dBm
08:49:54.281 > Interrupt received
08:49:54.323 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 01 00 48 03 E7 00 A1 00 01 B9 6F 89 | -46 dBm
08:49:54.361 > [DPL::loop] ******************* ENTER **********************
08:49:54.401 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6593 s, ignore: no
08:49:54.443 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 31.70 V, returning: 31.70V
08:49:54.482 > [DPL::loop] dcVoltage: 31.70 V, loadCorrectedVoltage: 31.81 V, StartTH: 1.00 V, StopTH: 0.00 V
08:49:54.528 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
08:49:54.574 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:49:54.610 > [DPL::loop] battery discharging allowed, PowerMeter: 1578 W, target consumption: -200 W
08:49:54.651 > [DPL::setNewPowerLimit] calculated: 1886 W, requesting: 1700 W, reported: 1700 W, diff: 0 W, hysteresis: 25 W
08:49:54.691 > RX Period End
08:49:54.733 > Success
08:49:54.778 > Fetch inverter: 116491433252
08:49:54.822 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 A2 00 00 00 00 00 00 00 00 90 E6 33
08:49:54.867 > Interrupt received
08:49:54.911 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 40 01 3E 00 56 00 5A 01 14 01 1E 00 00 69 | -31 dBm
08:49:54.955 > Interrupt received
08:49:55.001 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 00 00 00 01 3F 01 41 00 5D 4D | -31 dBm
08:49:55.043 > Interrupt received
08:49:55.081 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 55 01 2C 01 14 00 00 76 97 00 00 E8 E6 00 00 90 | -31 dBm
08:49:55.121 > Interrupt received
08:49:55.161 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 00 09 4E 13 8B 04 3A 00 00 00 2D 03 E7 00 49 74 | -31 dBm
08:49:55.231 > RX Period End
08:49:55.273 > Last missing
08:49:55.312 > Request retransmit: 5
08:49:55.351 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 85 14
08:49:55.391 > Interrupt received
08:49:55.433 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 01 CE 51 0A | -31 dBm
08:49:55.471 > [DPL::loop] ******************* ENTER **********************
08:49:55.509 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6594 s, ignore: no
08:49:55.553 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 31.70 V, returning: 31.70V
08:49:55.591 > [DPL::loop] dcVoltage: 31.70 V, loadCorrectedVoltage: 31.81 V, StartTH: 1.00 V, StopTH: 0.00 V
08:49:55.631 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
08:49:55.671 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:49:55.711 > [DPL::loop] battery discharging allowed, PowerMeter: 1571 W, target consumption: -200 W
08:49:55.755 > [DPL::setNewPowerLimit] calculated: 1879 W, requesting: 1700 W, reported: 1700 W, diff: 0 W, hysteresis: 25 W
08:49:55.807 > RX Period End
08:49:55.858 > Success
08:49:55.901 > Fetch inverter: 114483761097
08:49:55.946 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 A3 00 00 00 00 00 00 00 00 00 EB 6F
08:49:55.993 > Interrupt received
08:49:56.031 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 39 01 3B 01 12 01 18 03 5B 03 72 00 00 F0 | -52 dBm
08:49:56.071 > Interrupt received
08:49:56.112 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E4 00 00 E0 25 00 61 00 64 09 46 13 8B 06 71 EE | -49 dBm
08:49:56.151 > Interrupt received
08:49:56.193 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 01 00 45 03 E7 00 A1 00 01 8F 76 AB | -45 dBm
08:49:56.230 > RX Period End
08:49:56.278 > Success
08:49:56.631 > [DPL::loop] ******************* ENTER **********************
08:49:56.677 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6595 s, ignore: no
08:49:56.722 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 32.00 V, returning: 32.00V
08:49:56.762 > [DPL::loop] dcVoltage: 32.00 V, loadCorrectedVoltage: 32.11 V, StartTH: 1.00 V, StopTH: 0.00 V
08:49:56.802 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
08:49:56.841 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:49:56.888 > [DPL::loop] battery discharging allowed, PowerMeter: 1569 W, target consumption: -200 W
08:49:56.932 > [DPL::setNewPowerLimit] calculated: 1877 W, requesting: 1700 W, reported: 1700 W, diff: 0 W, hysteresis: 25 W
08:49:56.972 > Fetch inverter: 116491433252
08:49:57.013 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 A4 00 00 00 00 00 00 00 00 30 CD BE
08:49:57.066 > Interrupt received
08:49:57.143 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 42 01 3E 00 55 00 5A 01 14 01 1E 00 00 68 | -31 dBm
08:49:57.309 > Interrupt received
08:49:57.345 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 00 00 00 01 3F 01 41 00 5E 4E | -31 dBm
08:49:57.389 > Interrupt received
08:49:57.440 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 55 01 2C 01 14 00 00 76 97 00 00 E8 E6 00 00 90 | -31 dBm
08:49:57.481 > Interrupt received
08:49:57.522 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 00 09 4B 13 8B 04 3B 00 00 00 2D 03 E7 00 49 70 | -31 dBm
08:49:57.565 > Interrupt received
08:49:57.616 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 01 F2 94 F3 | -29 dBm
08:49:57.662 > RX Period End
08:49:57.708 > Success
08:49:57.750 > Fetch inverter: 114483761097
08:49:57.904 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 A5 00 00 00 00 00 00 00 00 A0 C0 E2
08:49:57.949 > [DPL::loop] ******************* ENTER **********************
08:49:58.001 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6596 s, ignore: no
08:49:58.051 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 32.20 V, returning: 32.20V
08:49:58.098 > [DPL::loop] dcVoltage: 32.20 V, loadCorrectedVoltage: 32.31 V, StartTH: 1.00 V, StopTH: 0.00 V
08:49:58.151 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
08:49:58.182 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:49:58.221 > [DPL::loop] battery discharging allowed, PowerMeter: 1564 W, target consumption: -200 W
08:49:58.267 > [DPL::setNewPowerLimit] calculated: 1872 W, requesting: 1700 W, reported: 1700 W, diff: 0 W, hysteresis: 25 W
08:49:58.320 > Interrupt received
08:49:58.360 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 39 01 3B 01 13 01 19 03 60 03 77 00 00 CE | -104 dBm
08:49:58.402 > RX Period End
08:49:58.448 > Last missing
08:49:58.503 > Request retransmit: 2
08:49:58.554 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 82 D3
08:49:58.592 > Interrupt received
08:49:58.630 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 B9 E4 00 00 E0 25 00 61 00 64 09 40 13 8B 06 7B E2 | -46 dBm
08:49:58.672 > RX Period End
08:49:58.720 > Last missing
08:49:58.762 > Request retransmit: 3
08:49:58.810 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 83 D2
08:49:58.852 > Interrupt received
08:49:58.896 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 01 00 46 03 E7 00 A1 00 01 8D 52 8E | -46 dBm
08:49:58.952 > RX Period End
08:49:58.990 > Success
08:49:59.034 > Fetch inverter: 116491433252
08:49:59.072 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 E9 71 A6 00 00 00 00 00 00 00 00 50 D4 C5
08:49:59.112 > Interrupt received
08:49:59.153 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 42 01 3E 00 57 00 5B 01 18 01 21 00 00 58 | -31 dBm
08:49:59.194 > Interrupt received
08:49:59.236 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B2 F4 00 00 7B 40 00 00 00 00 01 3F 01 41 00 5E 4E | -31 dBm
08:49:59.287 > Interrupt received
08:49:59.332 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 56 01 2F 01 16 00 00 76 97 00 00 E8 E6 00 00 92 | -31 dBm
08:49:59.380 > Interrupt received
08:49:59.422 > Interrupt received
08:49:59.467 > [DPL::loop] ******************* ENTER **********************
08:49:59.512 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 6598 s, ignore: no
08:49:59.552 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 32.20 V, returning: 32.20V
08:49:59.592 > [DPL::loop] dcVoltage: 32.20 V, loadCorrectedVoltage: 32.31 V, StartTH: 1.00 V, StopTH: 0.00 V
08:49:59.632 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
08:49:59.672 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
08:49:59.710 > [DPL::loop] battery discharging allowed, PowerMeter: 1570 W, target consumption: -200 W
08:49:59.754 > [DPL::setNewPowerLimit] calculated: 1878 W, requesting: 1700 W, reported: 1700 W, diff: 0 W, hysteresis: 25 W
08:49:59.816 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 01 11 7A FE | -31 dBm
08:49:59.854 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 01 11 7A FE | -31 dBm
08:49:59.897 > RX Period End
08:49:59.965 > Middle missing
08:50:00.007 > Request retransmit: 4
08:50:00.052 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 84 15
08:50:00.095 > Interrupt received
08:50:00.130 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 00 09 4B 13 8B 04 46 00 00 00 2E 03 E7 00 49 0E | -31 dBm
08:50:00.176 > RX Period End
08:50:00.214 > Success
08:50:00.252 > Fetch inverter: 114483761097
08:50:00.290 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 E9 71 A7 00 00 00 00 00 00 00 00 C0 D9 99
08:50:00.344 > Interrupt received
08:50:00.382 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 39 01 3B 01 1B 01 21 03 7A 03 90 00 00 03 | -46 dBm

@spcqike
Copy link

spcqike commented Mar 7, 2024

@chrisli01 kannst du deinen Wechselrichter manuell im WebUI starten?

der DPL versucht deinen Wechselrichter zu starten, aber er startet nicht. Warum auch immer.

Ich hab bei mir mal manuell aus geschalten und den DPL ihn wieder starten lassen. das geht bei meinem HM-600 ohne Probleme

## System läuft stabil ##

10:07:47.986 > [DPL::loop] ******************* ENTER **********************
10:07:48.162 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 0 %, StopTH: 0 %, SoC age: 306125 s, ignore: no
10:07:48.290 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 42.50 V, returning: 42.50V
10:07:48.472 > [DPL::loop] dcVoltage: 42.50 V, loadCorrectedVoltage: 42.50 V, StartTH: 10.00 V, StopTH: 5.00 V
10:07:48.566 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
10:07:48.643 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
10:07:48.721 > [DPL::loop] battery discharging allowed, PowerMeter: 46 W, target consumption: -20 W
10:07:48.852 > [DPL::setNewPowerLimit] calculated: 252 W, requesting: 252 W, reported: 259 W, diff: 7 W, hysteresis: 10 W

10:07:48.937 > [DPL::loop] ******************* ENTER **********************
10:07:49.084 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 0 %, StopTH: 0 %, SoC age: 306126 s, ignore: no
10:07:49.186 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 42.50 V, returning: 42.50V
10:07:49.283 > [DPL::loop] dcVoltage: 42.50 V, loadCorrectedVoltage: 42.50 V, StartTH: 10.00 V, StopTH: 5.00 V
10:07:49.386 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
10:07:49.492 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
10:07:49.593 > [DPL::loop] battery discharging allowed, PowerMeter: 46 W, target consumption: -20 W
10:07:49.696 > [DPL::setNewPowerLimit] calculated: 252 W, requesting: 252 W, reported: 259 W, diff: 7 W, hysteresis: 10 W


## manuelles Ausschalten im WebUI ##
10:07:49.799 > [ 306127.030] DPL: waiting for a start/stop/restart command to complete

10:07:50.961 > Success
10:07:51.898 > PowerMeterClass: TotalPower: 178.40
10:07:52.002 > Fetch inverter: 114183722749
10:07:52.482 > Success

## Inverter wird gestartet ##
10:07:52.568 > [DPL::updateInverter] Starting inverter...
10:07:54.669 > Success
10:07:57.516 > PowerMeterClass: TotalPower: 230.60
10:07:57.619 > Fetch inverter: 114183722749
10:07:58.219 > Middle missing
10:07:58.398 > Request retransmit: 1
10:07:58.503 > Success
10:07:58.611 > [DPL::loop] ******************* ENTER **********************
10:07:58.802 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 0 %, StopTH: 0 %, SoC age: 306136 s, ignore: no
10:07:58.903 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 42.40 V, returning: 42.40V
10:07:59.007 > [DPL::loop] dcVoltage: 42.40 V, loadCorrectedVoltage: 42.40 V, StartTH: 10.00 V, StopTH: 5.00 V
10:07:59.117 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
10:07:59.282 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
10:07:59.352 > [DPL::loop] battery discharging allowed, PowerMeter: 231 W, target consumption: -20 W

## Limit mit 437W zu hoch, warum auch immer? ##

10:07:59.529 > [DPL::setNewPowerLimit] calculated: 437 W, requesting: 437 W, reported: 259 W, diff: 178 W, hysteresis: 10 W
10:07:59.629 > [DPL::updateInverter] sending limit of 72.8 % (437 W respectively), max output is 600 W
10:07:59.826 > [ 306136.550] DPL: waiting for a power limit command to complete
10:07:59.929 > Last missing
10:08:00.033 > Request retransmit: 2
10:08:00.151 > Success
10:08:01.362 > Success
10:08:01.563 > [DPL:updateInverter] actual limit is 72.0 % (432 W respectively), effective 2935 ms after update started, requested were 72.8 %
10:08:01.675 > [ 306139.483] DPL: waiting for sufficiently recent inverter data
10:08:02.671 > PowerMeterClass: TotalPower: 45.90
10:08:02.869 > Fetch inverter: 114183722749
10:08:03.453 > Middle missing
10:08:03.612 > Request retransmit: 1
10:08:03.740 > Success
10:08:03.921 > [DPL::loop] ******************* ENTER **********************
10:08:04.027 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 0 %, StopTH: 0 %, SoC age: 306141 s, ignore: no
10:08:04.230 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 42.40 V, returning: 42.40V
10:08:04.304 > [DPL::loop] dcVoltage: 42.40 V, loadCorrectedVoltage: 42.40 V, StartTH: 10.00 V, StopTH: 5.00 V
10:08:04.435 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
10:08:04.535 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
10:08:04.638 > [DPL::loop] battery discharging allowed, PowerMeter: 46 W, target consumption: -20 W

## Limit korrekt ##

10:08:04.737 > [DPL::setNewPowerLimit] calculated: 252 W, requesting: 252 W, reported: 432 W, diff: 180 W, hysteresis: 10 W
10:08:04.839 > [DPL::updateInverter] sending limit of 42.0 % (252 W respectively), max output is 600 W
10:08:04.946 > [ 306141.801] DPL: waiting for a power limit command to complete
10:08:05.044 > All missing
10:08:05.156 > Nothing received, resend whole request
10:08:05.252 > Success
10:08:07.289 > Success
10:08:07.401 > [DPL:updateInverter] actual limit is 42.0 % (252 W respectively), effective 3619 ms after update started, requested were 42.0 %
10:08:07.502 > [ 306145.406] DPL: waiting for sufficiently recent inverter data
10:08:08.170 > PowerMeterClass: TotalPower: 46.20

## System wieder stabil ##

Was man aber sieht: einmal gibt es ein falsches Limit.
grafik

@chrisli01
Copy link

Ja genau, Neustart über die Weboberfläche.

@schlimmchen
Copy link
Collaborator Author

Per Hand neu gestartet….

Ja genau, Neustart über die Weboberfläche.

Du hat über die Weboberfläche einen Neustart-Befehl verschickt? Also den gelben Button?

image

Hast du den nächtlichen Neustart des Inverters durch den DPL eingeschaltet/konfiguriert?

@ottelo9
Copy link

ottelo9 commented Mar 7, 2024

2024_03_07_11_00_37_Overview_Home_Assistant
Bei mir wurde heute morgen alles gestartet. Bin mal gespannt ob es so bleibt,

@chrisli01
Copy link

Per Hand neu gestartet….

Ja genau, Neustart über die Weboberfläche.

Du hat über die Weboberfläche einen Neustart-Befehl verschickt? Also den gelben Button?

image

Hast du den nächtlichen Neustart des Inverters durch den DPL eingeschaltet/konfiguriert?

Ja genau, gelben Restart-Button.
Neustart ist nicht konfiguriert „ - - - -„

@schlimmchen
Copy link
Collaborator Author

Neustart ist nicht konfiguriert „ - - - -„

Magst du das mal machen? In der Hoffnung, dass er sich dann den jeweiligen Tag über brav pausieren und starten lässt?

@chrisli01
Copy link

Klar!
Hab mal 9:00 eingestellt

@spcqike
Copy link

spcqike commented Mar 7, 2024

@chrisli01 hast du am HMS-2000 eine Batterie?

@chrisli01
Copy link

Nein.
Aber so ab 8Uhr is der WR sicher online, falls du das meinst.

@spcqike
Copy link

spcqike commented Mar 7, 2024

Nein. Ich meine dass dein wechselrichter damit so oder so ab Sonnenuntergang aus ist und zum Sonnenaufgang Neustartet

die Funktion des erzwungenen Neustarts ist für Batterie betriebene wechselrichter eingebaut wurden, da es Probleme gibt, wenn wechselrichter zu lange laufen. (Dauerhaft Spannung auf der DC Seite)

Schaden kann ein zusätzlicher Neustart ab um 9 nicht. Aber nötig sein sollte er in deinem Fall glaube nicht.

@schlimmchen
Copy link
Collaborator Author

Guter Punkt, das hab ich gar nicht bedacht. Auch wenn's nicht schadet, wird's wohl auch nichts bringen.

Also dann kann ich dir nur noch ein anbieten: Lass die erzählen, wie die beiden HMS-2000 sich verhalten, die demnächst bei meinem Vater online kommen. Vielleicht machen die auch Probleme, dann würde ich dranbleiben. Andernfalls muss jemand anderes noch eine schlaue Idee haben, sonst kommen wir mit deinem Problem nicht weiter. Dass der Inverter Start-Aufforderungen einfach "ignoriert" hab ich sonst noch nirgends gelesen...

@spcqike
Copy link

spcqike commented Mar 7, 2024

Ich habe auch einen HMS-2000. aber der läuft bisher, wie der HM-600, alleine an einem Zähler. Startet nach Sonnenaufgang (ohne Batterie) und speist artig ein.

(Ok, der DPL läuft dort auch noch nicht …. Dafür fehlt noch der Shelly 3EM)

nach dem Umzug Mitte April wird sich das wohl ändern :) dann sind auch beide wechselrichter im gleichen Haushalt. Mal gucken wie ich dann was regeln muss.

Bis dahin läuft es einfach. Einzeln.

@chrisli01
Copy link

Das komische ist, wenn ich auf gelben Neustart Button klicke, funktioniert es beim ersten Klicken.

@chrisli01
Copy link

Könnte man noch einbauen, das der WR nicht in Standby (gelb) geht??

@ottelo9
Copy link

ottelo9 commented Mar 14, 2024

Wieso denn? Der WR soll nicht produzieren, deshalb Standby.

@chrisli01
Copy link

Damit er Minimum produziert und nicht aufgeweckt werden muss!

IMG_8818

Websocket: [/livedata][11] disconnect
09:21:03.434 > RX Period End
09:21:03.488 > Success
09:21:03.531 > Fetch inverter: 114483761097
09:21:03.553 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 6F 00 00 00 00 00 00 00 00 17 3B BD
09:21:03.596 > Interrupt received
09:21:03.609 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 41 00 BB 00 BF 02 56 02 67 00 00 9A | -48 dBm
09:21:03.664 > Interrupt received
09:21:03.689 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 12 13 89 04 7E 64 | -48 dBm
09:21:03.744 > Interrupt received
09:21:03.766 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 31 03 E8 00 B3 00 03 E1 A4 7D | -52 dBm
09:21:03.819 > PowerMeterClass: TotalPower: 1579.39
09:21:03.843 > [DPL::updateInverter] timeout, state transition pending: yes, limit pending: no
09:21:03.868 > [ 8463.018] DPL: waiting for sufficiently recent inverter data
09:21:03.912 > RX Period End
09:21:03.963 > Success
09:21:04.315 > Fetch inverter: 116491433252
09:21:04.358 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 70 00 00 00 00 00 00 00 00 27 B7 DE
09:21:04.436 > Interrupt received
09:21:04.447 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:04.483 > Interrupt received
09:21:04.507 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 68 00 06 31 | -33 dBm
09:21:04.547 > Interrupt received
09:21:04.571 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:04.617 > Interrupt received
09:21:04.696 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 21 13 89 00 00 00 00 00 00 00 00 00 67 C5 | -33 dBm
09:21:04.721 > Interrupt received
09:21:04.762 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 DE DD 92 | -33 dBm
09:21:05.085 > RX Period End
09:21:05.121 > Success
09:21:05.147 > [DPL::loop] ******************* ENTER **********************
09:21:05.206 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 8464 s, ignore: no
09:21:05.326 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 36.10 V, returning: 36.10V
09:21:05.346 > [DPL::loop] dcVoltage: 36.10 V, loadCorrectedVoltage: 36.10 V, StartTH: 1.00 V, StopTH: 0.00 V
09:21:05.382 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
09:21:05.403 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
09:21:05.420 > [DPL::loop] battery discharging allowed, PowerMeter: 1571 W, target consumption: -200 W
09:21:05.463 > [DPL::setNewPowerLimit] 4 channels total, 1 producing channels, scaling power limit
09:21:05.476 > [DPL::setNewPowerLimit] calculated: 1771 W, requesting: 2000 W, reported: 2000 W, diff: 0 W, hysteresis: 25 W
09:21:05.503 > [DPL::updateInverter] Starting inverter...
09:21:05.620 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:05.721 > [ 8464.359] DPL: waiting for a start/stop/restart command to complete
09:21:05.763 > Interrupt received
09:21:05.776 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:07.120 > RX Period End
09:21:07.159 > Success
09:21:07.193 > Fetch inverter: 114483761097
09:21:07.210 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 73 00 00 00 00 00 00 00 00 D7 A3 F9
09:21:07.251 > Interrupt received
09:21:07.269 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 BA 00 BE 02 51 02 62 00 00 99 | -52 dBm
09:21:07.299 > Interrupt received
09:21:07.310 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 1A 13 89 04 74 66 | -52 dBm
09:21:07.347 > Interrupt received
09:21:07.370 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 30 03 E7 00 B3 00 03 97 B1 10 | -52 dBm
09:21:07.737 > RX Period End
09:21:08.041 > Success
09:21:08.242 > Fetch inverter: 116491433252
09:21:08.262 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 74 00 00 00 00 00 00 00 00 E7 85 28
09:21:08.311 > Interrupt received
09:21:08.335 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:08.388 > Interrupt received
09:21:08.411 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 68 00 06 31 | -33 dBm
09:21:08.527 > Interrupt received
09:21:08.590 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:08.648 > Interrupt received
09:21:08.678 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 22 13 89 00 00 00 00 00 00 00 00 00 66 C7 | -33 dBm
09:21:08.732 > Interrupt received
09:21:08.756 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 1F CF 41 | -33 dBm
09:21:08.820 > RX Period End
09:21:08.876 > Success
09:21:08.907 > [DPL::updateInverter] Starting inverter...
09:21:08.916 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:08.939 > Interrupt received
09:21:08.969 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:10.802 > RX Period End
09:21:10.867 > Success
09:21:10.884 > Fetch inverter: 114483761097
09:21:10.913 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 76 00 00 00 00 00 00 00 00 87 9C 93
09:21:10.947 > Interrupt received
09:21:10.961 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 B8 00 BC 02 4B 02 5D 00 00 BC | -46 dBm
09:21:10.992 > Interrupt received
09:21:11.007 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 1C 13 89 04 69 7D | -46 dBm
09:21:11.071 > Interrupt received
09:21:11.084 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 30 03 E7 00 B3 00 03 1A 3B 17 | -47 dBm
09:21:11.425 > RX Period End
09:21:11.722 > Success
09:21:11.780 > Fetch inverter: 116491433252
09:21:11.827 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 77 00 00 00 00 00 00 00 00 17 91 CF
09:21:11.898 > Interrupt received
09:21:11.920 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:11.956 > Interrupt received
09:21:11.972 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:12.007 > Interrupt received
09:21:12.058 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:12.087 > Interrupt received
09:21:12.110 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 24 13 89 00 00 00 00 00 00 00 00 00 66 C1 | -33 dBm
09:21:12.153 > Interrupt received
09:21:12.174 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 ED F7 8B | -33 dBm
09:21:12.348 > RX Period End
09:21:12.365 > Success
09:21:12.383 > [DPL::updateInverter] Starting inverter...
09:21:12.396 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:12.432 > Interrupt received
09:21:12.445 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:13.898 > PowerMeterClass: TotalPower: 1564.20
09:21:14.499 > RX Period End
09:21:14.694 > Success
09:21:14.767 > Fetch inverter: 114483761097
09:21:14.791 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 7A 00 00 00 00 00 00 00 00 87 C9 CA
09:21:14.845 > Interrupt received
09:21:14.935 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 B7 00 BA 02 47 02 59 00 00 BD | -47 dBm
09:21:14.983 > Interrupt received
09:21:15.009 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 11 13 8A 04 62 78 | -47 dBm
09:21:15.055 > Interrupt received
09:21:15.080 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 30 03 E7 00 B3 00 03 F9 D5 1A | -47 dBm
09:21:15.137 > RX Period End
09:21:15.165 > Success
09:21:15.510 > Fetch inverter: 116491433252
09:21:15.553 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 7B 00 00 00 00 00 00 00 00 17 C4 96
09:21:15.713 > Interrupt received
09:21:15.755 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:15.803 > Interrupt received
09:21:15.832 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:15.883 > Interrupt received
09:21:15.907 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:15.960 > Interrupt received
09:21:15.982 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 0C 13 89 00 00 00 00 00 00 00 00 00 66 E9 | -33 dBm
09:21:16.031 > Interrupt received
09:21:16.061 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 F3 DF BD | -33 dBm
09:21:16.107 > RX Period End
09:21:16.155 > Success
09:21:16.203 > [DPL::updateInverter] Starting inverter...
09:21:16.226 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:16.249 > [ 8475.285] DPL: waiting for a start/stop/restart command to complete
09:21:16.303 > Interrupt received
09:21:16.360 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:18.056 > RX Period End
09:21:18.105 > Success
09:21:18.145 > Fetch inverter: 114483761097
09:21:18.170 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 7E 00 00 00 00 00 00 00 00 47 FB 3C
09:21:18.223 > Interrupt received
09:21:18.283 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 B6 00 B9 02 44 02 55 00 00 B0 | -46 dBm
09:21:18.362 > Interrupt received
09:21:18.417 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 03 13 89 04 5B 50 | -47 dBm
09:21:18.471 > Interrupt received
09:21:18.517 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 30 03 E7 00 B3 00 03 63 BB EE | -46 dBm
09:21:18.608 > RX Period End
09:21:18.652 > Success
09:21:19.091 > Fetch inverter: 116491433252
09:21:19.134 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 7F 00 00 00 00 00 00 00 00 D7 F6 60
09:21:19.165 > Interrupt received
09:21:19.179 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:19.207 > Interrupt received
09:21:19.228 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:19.276 > Interrupt received
09:21:19.339 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:19.391 > Interrupt received
09:21:19.415 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 09 13 89 00 00 00 00 00 00 00 00 00 67 ED | -33 dBm
09:21:19.467 > Interrupt received
09:21:19.492 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 30 4B EA | -33 dBm
09:21:19.631 > RX Period End
09:21:19.683 > Success
09:21:19.731 > [DPL::updateInverter] Starting inverter...
09:21:19.754 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:19.807 > Interrupt received
09:21:19.836 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:21.752 > RX Period End
09:21:21.820 > Success
09:21:21.863 > Fetch inverter: 114483761097
09:21:21.892 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 81 00 00 00 00 00 00 00 00 B3 BE 72
09:21:21.943 > Interrupt received
09:21:21.966 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 B4 00 B8 02 3F 02 51 00 00 CC | -49 dBm
09:21:22.012 > Interrupt received
09:21:22.034 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 00 13 89 04 52 5A | -55 dBm
09:21:22.087 > Interrupt received
09:21:22.110 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 30 03 E7 00 B3 00 03 C3 D0 25 | -49 dBm
09:21:22.255 > RX Period End
09:21:22.307 > Success
09:21:22.772 > Fetch inverter: 116491433252
09:21:22.820 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 82 00 00 00 00 00 00 00 00 43 AA 55
09:21:22.867 > Interrupt received
09:21:22.890 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:22.958 > Interrupt received
09:21:22.987 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:23.039 > Interrupt received
09:21:23.066 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:23.120 > Interrupt received
09:21:23.142 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 06 13 89 00 00 00 00 00 00 00 00 00 66 E3 | -33 dBm
09:21:23.199 > Interrupt received
09:21:23.209 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 F4 55 30 | -33 dBm
09:21:23.258 > RX Period End
09:21:23.283 > Success
09:21:23.304 > [DPL::updateInverter] Starting inverter...
09:21:23.316 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:23.371 > Interrupt received
09:21:23.395 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:24.021 > PowerMeterClass: TotalPower: 1463.11
09:21:25.339 > RX Period End
09:21:25.407 > Success
09:21:25.459 > Fetch inverter: 114483761097
09:21:25.484 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 85 00 00 00 00 00 00 00 00 73 8C 84
09:21:25.543 > Interrupt received
09:21:25.595 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 00 B3 00 B7 02 3C 02 4D 00 00 DA | -48 dBm
09:21:25.661 > Interrupt received
09:21:25.686 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 1A 13 89 04 4C 5E | -47 dBm
09:21:25.751 > Interrupt received
09:21:25.893 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2F 03 E8 00 B3 00 03 66 9A DA | -46 dBm
09:21:25.955 > RX Period End
09:21:26.061 > Success
09:21:26.323 > Fetch inverter: 116491433252
09:21:26.358 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 86 00 00 00 00 00 00 00 00 83 98 A3
09:21:26.431 > Interrupt received
09:21:26.459 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:26.503 > Interrupt received
09:21:26.526 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:26.579 > Interrupt received
09:21:26.607 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:26.660 > Interrupt received
09:21:26.684 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 21 13 89 00 00 00 00 00 00 00 00 00 66 C4 | -33 dBm
09:21:26.741 > Interrupt received
09:21:26.762 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 EE 32 4D | -33 dBm
09:21:26.903 > RX Period End
09:21:26.955 > Success
09:21:27.007 > [DPL::updateInverter] Starting inverter...
09:21:27.063 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:27.089 > [ 8486.183] DPL: waiting for a start/stop/restart command to complete
09:21:27.139 > Interrupt received
09:21:27.161 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:29.021 > RX Period End
09:21:29.083 > Success
09:21:29.135 > Fetch inverter: 114483761097
09:21:29.164 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 89 00 00 00 00 00 00 00 00 73 D9 DD
09:21:29.215 > Interrupt received
09:21:29.230 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 41 00 B2 00 B7 02 3A 02 4C 00 00 DC | -46 dBm
09:21:29.283 > Interrupt received
09:21:29.306 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 15 13 89 04 49 54 | -46 dBm
09:21:29.359 > Interrupt received
09:21:29.382 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2F 03 E8 00 B3 00 03 50 5C 2A | -46 dBm
09:21:29.561 > RX Period End
09:21:29.611 > Success
09:21:30.045 > Fetch inverter: 116491433252
09:21:30.092 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 8A 00 00 00 00 00 00 00 00 83 CD FA
09:21:30.143 > Interrupt received
09:21:30.171 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:30.235 > Interrupt received
09:21:30.299 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:30.351 > Interrupt received
09:21:30.373 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:30.427 > Interrupt received
09:21:30.444 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 1C 13 88 00 00 00 00 00 00 00 00 00 66 F8 | -90 dBm
09:21:30.500 > Interrupt received
09:21:30.524 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 7E CD 22 | -33 dBm
09:21:30.591 > RX Period End
09:21:30.643 > Success
09:21:30.696 > [DPL::updateInverter] Starting inverter...
09:21:30.725 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:30.775 > Interrupt received
09:21:30.797 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:32.704 > RX Period End
09:21:32.779 > Success
09:21:32.885 > Fetch inverter: 114483761097
09:21:32.917 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 8C 00 00 00 00 00 00 00 00 23 E6 B7
09:21:32.971 > Interrupt received
09:21:32.995 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 B2 00 B6 02 37 02 49 00 00 D4 | -47 dBm
09:21:33.050 > Interrupt received
09:21:33.078 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 11 13 88 04 44 5C | -47 dBm
09:21:33.127 > Interrupt received
09:21:33.151 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2F 03 E8 00 B3 00 03 D2 95 61 | -49 dBm
09:21:33.203 > RX Period End
09:21:33.256 > Success
09:21:33.620 > Fetch inverter: 116491433252
09:21:33.660 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 8D 00 00 00 00 00 00 00 00 B3 EB EB
09:21:33.842 > Interrupt received
09:21:33.880 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:33.935 > Interrupt received
09:21:33.957 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:34.012 > Interrupt received
09:21:34.029 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:34.079 > Interrupt received
09:21:34.177 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 0F 13 87 00 00 00 00 00 00 00 00 00 66 E4 | -33 dBm
09:21:34.219 > Interrupt received
09:21:34.244 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 7C 8A 67 | -33 dBm
09:21:34.295 > PowerMeterClass: TotalPower: 1613.08
09:21:34.419 > RX Period End
09:21:34.476 > Success
09:21:34.542 > [DPL::updateInverter] Starting inverter...
09:21:34.700 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:34.759 > Interrupt received
09:21:34.784 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:35.366 > [DPL::updateInverter] timeout, state transition pending: yes, limit pending: no
09:21:35.420 > [DPL::loop] ******************* ENTER **********************
09:21:35.449 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 8494 s, ignore: no
09:21:35.478 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 36.10 V, returning: 36.10V
09:21:35.502 > [DPL::loop] dcVoltage: 36.10 V, loadCorrectedVoltage: 36.10 V, StartTH: 1.00 V, StopTH: 0.00 V
09:21:35.526 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
09:21:35.549 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
09:21:35.578 > [DPL::loop] battery discharging allowed, PowerMeter: 1605 W, target consumption: -200 W
09:21:35.608 > [DPL::setNewPowerLimit] 4 channels total, 1 producing channels, scaling power limit
09:21:35.651 > [DPL::setNewPowerLimit] calculated: 1805 W, requesting: 2000 W, reported: 2000 W, diff: 0 W, hysteresis: 25 W
09:21:36.291 > RX Period End
09:21:36.367 > Success
09:21:36.423 > Fetch inverter: 114483761097
09:21:36.448 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 90 00 00 00 00 00 00 00 00 E3 7E F3
09:21:36.500 > Interrupt received
09:21:36.512 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 00 B1 00 B5 02 35 02 47 00 00 D9 | -49 dBm
09:21:36.555 > Interrupt received
09:21:36.579 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 04 13 87 04 40 42 | -49 dBm
09:21:36.635 > Interrupt received
09:21:36.661 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2F 03 E8 00 B3 00 03 B9 3F A0 | -49 dBm
09:21:36.847 > RX Period End
09:21:36.899 > Success
09:21:37.275 > Fetch inverter: 116491433252
09:21:37.410 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 91 00 00 00 00 00 00 00 00 73 73 AF
09:21:37.513 > Interrupt received
09:21:37.566 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:37.619 > Interrupt received
09:21:37.642 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:37.699 > Interrupt received
09:21:37.722 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:37.775 > Interrupt received
09:21:37.800 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 0C 13 87 00 00 00 00 00 00 00 00 00 66 E7 | -33 dBm
09:21:37.855 > Interrupt received
09:21:37.878 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 7D C9 25 | -33 dBm
09:21:37.927 > RX Period End
09:21:37.967 > Success
09:21:38.019 > [DPL::updateInverter] Starting inverter...
09:21:38.046 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:38.070 > [ 8497.128] DPL: waiting for a start/stop/restart command to complete
09:21:38.123 > Interrupt received
09:21:38.151 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:39.967 > RX Period End
09:21:40.051 > Success
09:21:40.108 > Fetch inverter: 114483761097
09:21:40.131 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 93 00 00 00 00 00 00 00 00 13 6A 14
09:21:40.183 > Interrupt received
09:21:40.213 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 B1 00 B5 02 35 02 46 00 00 D9 | -46 dBm
09:21:40.264 > Interrupt received
09:21:40.287 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 03 13 87 04 3F 3A | -48 dBm
09:21:40.503 > RX Period End
09:21:40.551 > Last missing
09:21:40.607 > Request retransmit: 3
09:21:40.631 > TX RequestFrame 866.00 MHz --> 15 83 76 10 97 80 10 26 80 83 D2
09:21:40.683 > Interrupt received
09:21:40.706 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2F 03 E8 00 B3 00 03 FF 3E E7 | -46 dBm
09:21:40.755 > RX Period End
09:21:40.807 > Success
09:21:40.895 > Fetch inverter: 116491433252
09:21:40.930 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 94 00 00 00 00 00 00 00 00 23 4C C5
09:21:41.003 > Interrupt received
09:21:41.026 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:41.083 > Interrupt received
09:21:41.106 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:41.147 > Interrupt received
09:21:41.174 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 0F 13 88 00 00 00 00 00 00 00 00 00 66 EB | -33 dBm
09:21:41.215 > Interrupt received
09:21:41.239 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 73 9E 7C | -33 dBm
09:21:41.608 > RX Period End
09:21:41.687 > Middle missing
09:21:41.740 > Request retransmit: 3
09:21:41.870 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 83 12
09:21:41.923 > Interrupt received
09:21:41.947 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:42.008 > RX Period End
09:21:42.063 > Success
09:21:42.115 > [DPL::updateInverter] Starting inverter...
09:21:42.129 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:42.168 > Interrupt received
09:21:42.185 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:43.751 > RX Period End
09:21:43.844 > Success
09:21:43.897 > Fetch inverter: 114483761097
09:21:43.915 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 97 00 00 00 00 00 00 00 00 D3 58 E2
09:21:43.975 > Interrupt received
09:21:44.049 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 00 B0 00 B5 02 33 02 45 00 00 DC | -46 dBm
09:21:44.080 > Interrupt received
09:21:44.106 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 49 00 A5 00 A5 09 07 13 88 04 3C 32 | -47 dBm
09:21:44.179 > Interrupt received
09:21:44.204 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2E 03 E8 00 B3 00 03 26 21 20 | -47 dBm
09:21:44.271 > PowerMeterClass: TotalPower: 1477.21
09:21:44.323 > RX Period End
09:21:44.375 > Success
09:21:44.673 > Fetch inverter: 116491433252
09:21:44.734 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 98 00 00 00 00 00 00 00 00 23 19 9C
09:21:44.775 > Interrupt received
09:21:44.800 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:44.851 > Interrupt received
09:21:44.882 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:44.931 > Interrupt received
09:21:44.954 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:45.011 > Interrupt received
09:21:45.034 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 0F 13 88 00 00 00 00 00 00 00 00 00 66 EB | -33 dBm
09:21:45.083 > Interrupt received
09:21:45.107 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 73 9E 7C | -33 dBm
09:21:45.239 > RX Period End
09:21:45.291 > Success
09:21:45.344 > [DPL::updateInverter] Starting inverter...
09:21:45.368 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:45.419 > Interrupt received
09:21:45.446 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:47.333 > RX Period End
09:21:47.424 > Success
09:21:47.481 > Fetch inverter: 114483761097
09:21:47.505 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 9B 00 00 00 00 00 00 00 00 D3 0D BB
09:21:47.560 > Interrupt received
09:21:47.585 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 B0 00 B5 02 34 02 45 00 00 DA | -49 dBm
09:21:47.642 > Interrupt received
09:21:47.662 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 4A 00 A5 00 A6 09 14 13 89 04 3D 21 | -52 dBm
09:21:47.715 > Interrupt received
09:21:47.819 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2E 03 E8 00 B3 00 03 C6 5A BB | -52 dBm
09:21:47.872 > RX Period End
09:21:48.039 > Success
09:21:48.303 > Fetch inverter: 116491433252
09:21:48.337 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 9C 00 00 00 00 00 00 00 00 E3 2B 6A
09:21:48.416 > Interrupt received
09:21:48.440 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:48.495 > Interrupt received
09:21:48.514 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:48.567 > Interrupt received
09:21:48.595 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:48.647 > Interrupt received
09:21:48.672 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 1B 13 89 00 00 00 00 00 00 00 00 00 66 FE | -33 dBm
09:21:48.731 > Interrupt received
09:21:48.764 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 FD 88 E4 | -33 dBm
09:21:48.876 > RX Period End
09:21:48.916 > Success
09:21:48.967 > [DPL::updateInverter] Starting inverter...
09:21:48.993 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:49.019 > [ 8508.166] DPL: waiting for a start/stop/restart command to complete
09:21:49.071 > Interrupt received
09:21:49.098 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:51.021 > RX Period End
09:21:51.112 > Success
09:21:51.163 > Fetch inverter: 114483761097
09:21:51.192 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 9F 00 00 00 00 00 00 00 00 13 3F 4D
09:21:51.243 > Interrupt received
09:21:51.269 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 B1 00 B5 02 35 02 46 00 00 D9 | -46 dBm
09:21:51.323 > Interrupt received
09:21:51.345 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 4A 00 A5 00 A6 09 17 13 89 04 3E 21 | -47 dBm
09:21:51.399 > Interrupt received
09:21:51.422 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2E 03 E8 00 B3 00 03 81 EB 4D | -46 dBm
09:21:51.507 > RX Period End
09:21:51.623 > Success
09:21:52.044 > Fetch inverter: 116491433252
09:21:52.107 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 A0 00 00 00 00 00 00 00 00 E2 2A 56
09:21:52.163 > Interrupt received
09:21:52.222 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:52.243 > Interrupt received
09:21:52.267 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:52.344 > Interrupt received
09:21:52.423 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:52.484 > Interrupt received
09:21:52.506 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 1F 13 8A 00 00 00 00 00 00 00 00 00 66 F9 | -33 dBm
09:21:52.563 > RX Period End
09:21:52.615 > Last missing
09:21:52.665 > Request retransmit: 5
09:21:52.691 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 85 14
09:21:52.768 > Interrupt received
09:21:52.926 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 3D 89 25 | -33 dBm
09:21:53.003 > RX Period End
09:21:53.160 > Success
09:21:53.202 > [DPL::updateInverter] Starting inverter...
09:21:53.223 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:53.273 > Interrupt received
09:21:53.294 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:54.308 > PowerMeterClass: TotalPower: 1479.28
09:21:54.807 > RX Period End
09:21:54.900 > Success
09:21:54.952 > Fetch inverter: 114483761097
09:21:54.979 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 A2 00 00 00 00 00 00 00 00 82 33 ED
09:21:55.032 > Interrupt received
09:21:55.061 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 40 00 B1 00 B6 02 37 02 48 00 00 D7 | -46 dBm
09:21:55.113 > Interrupt received
09:21:55.136 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3D 00 00 F3 4A 00 A5 00 A6 09 1B 13 8A 04 42 52 | -46 dBm
09:21:55.188 > Interrupt received
09:21:55.216 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2E 03 E7 00 B3 00 03 8C 2A 8E | -46 dBm
09:21:55.272 > RX Period End
09:21:55.320 > Success
09:21:55.727 > Fetch inverter: 116491433252
09:21:55.794 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 A3 00 00 00 00 00 00 00 00 12 3E B1
09:21:55.847 > Interrupt received
09:21:55.870 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:55.920 > Interrupt received
09:21:55.948 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:56.004 > Interrupt received
09:21:56.029 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:56.084 > Interrupt received
09:21:56.111 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 13 13 8A 00 00 00 00 00 00 00 00 00 66 F5 | -33 dBm
09:21:56.162 > Interrupt received
09:21:56.180 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 38 85 2C | -33 dBm
09:21:56.280 > RX Period End
09:21:56.336 > Success
09:21:56.390 > [DPL::updateInverter] Starting inverter...
09:21:56.417 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:21:56.468 > Interrupt received
09:21:56.489 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:21:58.394 > RX Period End
09:21:58.484 > Success
09:21:58.536 > Fetch inverter: 114483761097
09:21:58.565 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 A6 00 00 00 00 00 00 00 00 42 01 1B
09:21:58.620 > Interrupt received
09:21:58.645 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 41 00 B3 00 B7 02 3B 02 4D 00 00 DD | -46 dBm
09:21:58.695 > Interrupt received
09:21:58.717 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3E 00 00 F3 4A 00 A6 00 A6 09 0C 13 8B 04 4B 4D | -49 dBm
09:21:58.780 > Interrupt received
09:21:58.807 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2F 03 E7 00 B3 00 03 6C D8 9D | -49 dBm
09:21:58.950 > RX Period End
09:21:59.004 > Success
09:21:59.340 > Fetch inverter: 116491433252
09:21:59.415 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 A7 00 00 00 00 00 00 00 00 D2 0C 47
09:21:59.492 > Interrupt received
09:21:59.516 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:21:59.575 > Interrupt received
09:21:59.599 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:21:59.652 > Interrupt received
09:21:59.788 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:21:59.840 > Interrupt received
09:21:59.861 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 03 13 8B 00 00 00 00 00 00 00 00 00 66 E4 | -33 dBm
09:21:59.916 > Interrupt received
09:21:59.939 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 B5 97 B3 | -33 dBm
09:21:59.988 > RX Period End
09:22:00.048 > Success
09:22:00.098 > [DPL::updateInverter] Starting inverter...
09:22:00.123 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 00 00 B0 01 E5
09:22:00.146 > [ 8519.239] DPL: waiting for a start/stop/restart command to complete
09:22:00.199 > Interrupt received
09:22:00.230 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 00 00 24 00 F0 | -33 dBm
09:22:02.088 > RX Period End
09:22:02.152 > Success
09:22:02.188 > Fetch inverter: 114483761097
09:22:02.196 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 AA 00 00 00 00 00 00 00 00 42 54 42
09:22:02.239 > Interrupt received
09:22:02.262 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 41 00 B2 00 B6 02 38 02 4A 00 00 D9 | -46 dBm
09:22:02.315 > Interrupt received
09:22:02.338 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3E 00 00 F3 4A 00 A6 00 A6 08 FB 13 8A 04 46 B7 | -47 dBm
09:22:02.392 > Interrupt received
09:22:02.414 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2F 03 E7 00 B3 00 03 93 26 9C | -47 dBm
09:22:02.587 > RX Period End
09:22:02.632 > Success
09:22:03.101 > Fetch inverter: 116491433252
09:22:03.169 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 AB 00 00 00 00 00 00 00 00 D2 59 1E
09:22:03.211 > Interrupt received
09:22:03.233 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 69 01 6A 00 02 00 01 00 07 00 06 00 00 10 | -33 dBm
09:22:03.291 > Interrupt received
09:22:03.315 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 06 00 06 01 6A 01 67 00 06 3E | -33 dBm
09:22:03.389 > Interrupt received
09:22:03.398 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 00 00 16 00 03 00 00 7C 53 00 00 EE 54 00 06 94 | -33 dBm
09:22:03.444 > Interrupt received
09:22:03.474 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 05 09 04 13 8A 00 00 00 00 00 00 00 00 00 66 E2 | -33 dBm
09:22:03.519 > Interrupt received
09:22:03.552 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 05 36 D2 75 | -33 dBm
09:22:03.591 > RX Period End
09:22:03.643 > Success
09:22:03.666 > TX PowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 02 00 D0 00 86
09:22:03.723 > Interrupt received
09:22:03.746 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 02 00 44 01 93 | -33 dBm
09:22:04.437 > PowerMeterClass: TotalPower: 1509.07
09:22:05.446 > [DPL::updateInverter] timeout, state transition pending: yes, limit pending: no
09:22:05.548 > [DPL::loop] ******************* ENTER **********************
09:22:05.572 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 8524 s, ignore: no
09:22:05.594 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 36.10 V, returning: 36.10V
09:22:05.622 > [DPL::loop] dcVoltage: 36.10 V, loadCorrectedVoltage: 36.10 V, StartTH: 1.00 V, StopTH: 0.00 V
09:22:05.647 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is NOT producing
09:22:05.676 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
09:22:05.702 > [DPL::loop] battery discharging allowed, PowerMeter: 1509 W, target consumption: -200 W
09:22:05.726 > [DPL::setNewPowerLimit] 4 channels total, 1 producing channels, scaling power limit
09:22:05.752 > [DPL::setNewPowerLimit] calculated: 1709 W, requesting: 2000 W, reported: 2000 W, diff: 0 W, hysteresis: 25 W
09:22:05.799 > RX Period End
09:22:05.840 > Success
09:22:05.881 > Fetch inverter: 114483761097
09:22:05.906 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 AD 00 00 00 00 00 00 00 00 72 72 53
09:22:05.949 > Interrupt received
09:22:05.970 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 41 00 B1 00 B6 02 37 02 49 00 00 D6 | -49 dBm
09:22:06.024 > Interrupt received
09:22:06.046 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3E 00 00 F3 4A 00 A6 00 A6 08 FE 13 8A 04 43 B7 | -49 dBm
09:22:06.096 > Interrupt received
09:22:06.119 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2F 03 E8 00 B3 00 03 58 E1 9F | -52 dBm
09:22:06.200 > RX Period End
09:22:06.252 > Success
09:22:06.687 > Fetch inverter: 116491433252
09:22:06.772 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 AE 00 00 00 00 00 00 00 00 82 66 74
09:22:06.828 > Interrupt received
09:22:06.852 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 81 0B 00 09 00 50 04 C6 | -33 dBm
09:22:07.204 > RX Period End
09:22:07.228 > ERROR in RealTimeRunData: Received fragment size: 6, min expected size: 66
09:22:07.288 > Packet handling error
09:22:07.699 > Fetch inverter: 114483761097
09:22:07.774 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 AF 00 00 00 00 00 00 00 00 12 6B 28
09:22:07.828 > Interrupt received
09:22:07.858 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 41 00 B1 00 B6 02 37 02 49 00 00 D6 | -52 dBm
09:22:07.913 > Interrupt received
09:22:07.934 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3E 00 00 F3 4A 00 A6 00 A6 09 06 13 8A 04 43 4E | -52 dBm
09:22:07.992 > Interrupt received
09:22:08.016 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2F 03 E8 00 B3 00 03 8A D8 74 | -49 dBm
09:22:08.207 > RX Period End
09:22:08.260 > Success
09:22:08.721 > Fetch inverter: 116491433252
09:22:08.800 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 B0 00 00 00 00 00 00 00 00 22 E7 4B
09:22:08.852 > Interrupt received
09:22:08.875 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 81 0B 00 09 00 50 04 C6 | -33 dBm
09:22:09.428 > RX Period End
09:22:09.642 > ERROR in RealTimeRunData: Received fragment size: 6, min expected size: 66
09:22:09.860 > Packet handling error
09:22:09.952 > Fetch inverter: 114483761097
09:22:09.982 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 B1 00 00 00 00 00 00 00 00 B2 EA 17
09:22:10.036 > Interrupt received
09:22:10.059 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3F 01 41 00 B1 00 B6 02 37 02 49 00 00 D6 | -49 dBm
09:22:10.113 > Interrupt received
09:22:10.135 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3E 00 00 F3 4A 00 A6 00 A6 09 17 13 8A 04 44 58 | -46 dBm
09:22:10.188 > Interrupt received
09:22:10.210 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2E 03 E8 00 B3 00 03 32 03 16 | -46 dBm
09:22:10.267 > RX Period End
09:22:10.320 > Success
09:22:10.669 > Fetch inverter: 116491433252
09:22:10.746 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 B2 00 00 00 00 00 00 00 00 42 FE 30
09:22:11.280 > RX Period End
09:22:11.332 > All missing
09:22:11.388 > Nothing received, resend whole request
09:22:11.412 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 B2 00 00 00 00 00 00 00 00 42 FE 30
09:22:11.911 > RX Period End
09:22:12.008 > All missing
09:22:12.060 > Nothing received, resend whole request
09:22:12.083 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 B2 00 00 00 00 00 00 00 00 42 FE 30
09:22:12.408 > RX Period End
09:22:12.460 > All missing
09:22:12.713 > Nothing received, resend whole request
09:22:12.795 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 B2 00 00 00 00 00 00 00 00 42 FE 30
09:22:13.023 > RX Period End
09:22:13.128 > All missing
09:22:13.180 > Nothing received, resend whole request
09:22:13.202 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 B2 00 00 00 00 00 00 00 00 42 FE 30
09:22:13.540 > RX Period End
09:22:13.640 > All missing
09:22:13.692 > Nothing received, resend count exeeded
09:22:13.745 > Fetch inverter: 114483761097
09:22:13.817 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 B5 00 00 00 00 00 00 00 00 72 D8 E1
09:22:13.868 > Interrupt received
09:22:13.901 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 B1 00 B6 02 36 02 48 00 00 D7 | -52 dBm
09:22:13.960 > Interrupt received
09:22:13.982 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3E 00 00 F3 4A 00 A6 00 A6 09 17 13 89 04 42 5D | -46 dBm
09:22:14.036 > Interrupt received
09:22:14.060 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2E 03 E7 00 B3 00 03 15 15 28 | -46 dBm
09:22:14.105 > RX Period End
09:22:14.156 > Success
09:22:14.562 > PowerMeterClass: TotalPower: 1395.15
09:22:14.612 > Fetch inverter: 116491433252
09:22:14.633 > TX ChannelChangeCommand 868.00 MHz --> 56 91 43 32 52 80 10 26 80 02 15 21 18 14 E8
09:22:14.692 > RX Period End
09:22:14.767 > All missing
09:22:14.874 > Nothing received, resend whole request
09:22:14.946 > TX ChannelChangeCommand 868.00 MHz --> 56 91 43 32 52 80 10 26 80 02 15 21 18 14 E8
09:22:15.000 > RX Period End
09:22:15.044 > All missing
09:22:15.100 > Nothing received, resend whole request
09:22:15.129 > TX ChannelChangeCommand 868.00 MHz --> 56 91 43 32 52 80 10 26 80 02 15 21 18 14 E8
09:22:15.181 > RX Period End
09:22:15.219 > All missing
09:22:15.276 > Nothing received, resend whole request
09:22:15.307 > TX ChannelChangeCommand 868.00 MHz --> 56 91 43 32 52 80 10 26 80 02 15 21 18 14 E8
09:22:15.364 > RX Period End
09:22:15.416 > All missing
09:22:15.468 > Nothing received, resend whole request
09:22:15.493 > TX ChannelChangeCommand 868.00 MHz --> 56 91 43 32 52 80 10 26 80 02 15 21 18 14 E8
09:22:15.552 > RX Period End
09:22:15.605 > All missing
09:22:15.660 > Nothing received, resend count exeeded
09:22:15.686 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 B6 00 00 00 00 00 00 00 00 82 CC C6
09:22:15.740 > Interrupt received
09:22:15.864 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 3D 01 46 00 2F 00 31 00 8B 00 99 00 00 66 | -33 dBm
09:22:15.912 > Interrupt received
09:22:15.937 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 00 00 00 01 46 01 42 00 35 04 | -33 dBm
09:22:16.002 > Interrupt received
09:22:16.085 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 2E 00 A3 00 8E 00 00 7C 53 00 00 EE 54 00 00 84 | -33 dBm
09:22:16.153 > Interrupt received
09:22:16.180 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 00 09 21 13 89 02 30 00 00 00 17 03 E7 00 66 00 | -33 dBm
09:22:16.219 > Interrupt received
09:22:16.244 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 01 37 D7 75 | -33 dBm
09:22:16.299 > RX Period End
09:22:16.404 > Success
09:22:16.431 > [DPL::loop] ******************* ENTER **********************
09:22:16.456 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 8534 s, ignore: no
09:22:16.484 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 31.70 V, returning: 31.70V
09:22:16.505 > [DPL::loop] dcVoltage: 31.70 V, loadCorrectedVoltage: 31.76 V, StartTH: 1.00 V, StopTH: 0.00 V
09:22:16.534 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
09:22:16.555 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
09:22:16.579 > [DPL::loop] battery discharging allowed, PowerMeter: 1395 W, target consumption: -200 W
09:22:16.603 > [DPL::setNewPowerLimit] calculated: 1651 W, requesting: 1651 W, reported: 2000 W, diff: 349 W, hysteresis: 25 W
09:22:16.627 > [DPL::updateInverter] sending limit of 82.6 % (1651 W respectively), max output is 2000 W
09:22:16.652 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 03 39 00 01 E9 10 9D
09:22:16.672 > [ 8534.852] DPL: waiting for a power limit command to complete
09:22:16.723 > Interrupt received
09:22:16.735 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -33 dBm
09:22:17.732 > RX Period End
09:22:17.828 > Success
09:22:17.884 > Fetch inverter: 114483761097
09:22:17.916 > [DPL:updateInverter] actual limit is 82.0 % (1640 W respectively), effective 2105 ms after update started, requested were 82.6 %
09:22:17.943 > [ 8536.876] DPL: waiting for sufficiently recent inverter data
09:22:17.971 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 B9 00 00 00 00 00 00 00 00 72 8D B8
09:22:18.032 > Interrupt received
09:22:18.130 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 B0 00 B4 02 32 02 44 00 00 DC | -48 dBm
09:22:18.212 > Interrupt received
09:22:18.237 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3E 00 00 F3 4A 00 A6 00 A6 09 12 13 89 04 3A 20 | -47 dBm
09:22:18.300 > Interrupt received
09:22:18.328 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2E 03 E7 00 B3 00 03 7C E4 B0 | -47 dBm
09:22:18.395 > RX Period End
09:22:18.556 > Success
09:22:18.628 > Fetch inverter: 116491433252
09:22:18.736 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 BA 00 00 00 00 00 00 00 00 82 99 9F
09:22:18.824 > Interrupt received
09:22:18.940 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 35 01 3E 00 44 00 47 00 D3 00 E1 00 00 2B | -33 dBm
09:22:18.992 > Interrupt received
09:22:19.016 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 00 00 00 01 38 01 34 00 4E 77 | -33 dBm
09:22:19.080 > Interrupt received
09:22:19.102 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 47 00 F4 00 DB 00 00 7C 53 00 00 EE 54 00 00 EF | -33 dBm
09:22:19.156 > Interrupt received
09:22:19.179 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 00 09 18 13 89 03 58 00 00 00 24 03 E8 00 66 6C | -33 dBm
09:22:19.232 > Interrupt received
09:22:19.265 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 01 56 DA 19 | -33 dBm
09:22:19.308 > RX Period End
09:22:19.360 > Success
09:22:19.387 > [ 8538.442] DPL: waiting for sufficiently recent power meter reading
09:22:19.411 > TX AlarmData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 11 00 65 F2 B3 BA 00 00 00 00 00 00 00 00 58 82 44
09:22:19.468 > Interrupt received
09:22:19.492 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 81 00 01 80 01 00 01 75 B3 75 B3 00 00 00 00 FD E9 05 | -33 dBm
09:22:20.082 > RX Period End
09:22:20.168 > Success
09:22:20.211 > Fetch inverter: 114483761097
09:22:20.237 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 BC 00 00 00 00 00 00 00 00 22 B2 D2
09:22:20.287 > Interrupt received
09:22:20.311 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 AF 00 B3 02 2F 02 41 00 00 DC | -46 dBm
09:22:20.368 > Interrupt received
09:22:20.393 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3E 00 00 F3 4A 00 A6 00 A6 09 10 13 89 04 34 2C | -46 dBm
09:22:20.444 > Interrupt received
09:22:20.472 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2E 03 E7 00 B3 00 03 9E BD 0B | -47 dBm
09:22:20.600 > RX Period End
09:22:20.652 > Success
09:22:21.106 > Fetch inverter: 116491433252
09:22:21.185 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 BD 00 00 00 00 00 00 00 00 B2 BF 8E
09:22:21.224 > Interrupt received
09:22:21.248 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 3A 01 3B 00 43 00 47 00 D4 00 E0 00 00 20 | -33 dBm
09:22:21.303 > Interrupt received
09:22:21.360 > Frame kaputt
09:22:21.412 > Frame kaputt
09:22:21.464 > Interrupt received
09:22:21.487 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 46 00 F7 00 DB 00 00 7C 53 00 00 EE 54 00 00 ED | -33 dBm
09:22:21.540 > Interrupt received
09:22:21.607 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 00 09 19 13 89 03 5A 00 00 00 24 03 E8 00 66 6F | -33 dBm
09:22:21.673 > Interrupt received
09:22:21.835 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 01 62 D9 2E | -33 dBm
09:22:21.888 > RX Period End
09:22:21.944 > Middle missing
09:22:22.000 > Request retransmit: 2
09:22:22.024 > TX RequestFrame 866.00 MHz --> 15 91 43 32 52 80 10 26 80 82 13
09:22:22.076 > Interrupt received
09:22:22.104 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 00 00 00 01 3D 01 39 00 4E 7F | -33 dBm
09:22:22.156 > RX Period End
09:22:22.208 > Success
09:22:22.260 > Fetch inverter: 114483761097
09:22:22.285 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 BE 00 00 00 00 00 00 00 00 42 AB A9
09:22:22.340 > Interrupt received
09:22:22.365 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 AE 00 B3 02 2D 02 3F 00 00 A1 | -46 dBm
09:22:22.416 > Interrupt received
09:22:22.439 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3E 00 00 F3 4A 00 A6 00 A6 09 14 13 89 04 31 2D | -46 dBm
09:22:22.524 > Interrupt received
09:22:22.574 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2E 03 E7 00 B3 00 03 0E 25 03 | -46 dBm
09:22:22.658 > RX Period End
09:22:22.759 > Success
09:22:23.051 > Fetch inverter: 116491433252
09:22:23.137 > TX RealTimeRunData 866.00 MHz --> 15 91 43 32 52 80 10 26 80 80 0B 00 65 F2 B3 BF 00 00 00 00 00 00 00 00 D2 A6 F5
09:22:23.161 > Interrupt received
09:22:23.171 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 01 00 01 01 3D 01 3B 00 42 00 47 00 D3 00 E0 00 00 21 | -33 dBm
09:22:23.211 > Interrupt received
09:22:23.236 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 02 B7 72 00 00 80 63 00 00 00 00 01 3E 01 3B 00 4E 7E | -33 dBm
09:22:23.296 > Interrupt received
09:22:23.322 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 03 00 46 00 FA 00 DC 00 00 7C 53 00 00 EE 54 00 00 E7 | -33 dBm
09:22:23.375 > Interrupt received
09:22:23.398 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 04 00 00 09 1A 13 8A 03 5D 00 00 00 24 03 E8 00 66 68 | -33 dBm
09:22:23.489 > Interrupt received
09:22:23.578 > RX 866.00 MHz --> 95 91 43 32 52 80 10 26 80 85 00 01 E1 76 02 | -33 dBm
09:22:23.628 > RX Period End
09:22:23.681 > Success
09:22:24.081 > Fetch inverter: 114483761097
09:22:24.162 > TX RealTimeRunData 866.00 MHz --> 15 83 76 10 97 80 10 26 80 80 0B 00 65 F2 B3 C0 00 00 00 00 00 00 00 00 E0 82 5C
09:22:24.213 > Interrupt received
09:22:24.237 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 01 00 01 01 3E 01 41 00 AE 00 B2 02 2B 02 3D 00 00 A4 | -48 dBm
09:22:24.288 > Interrupt received
09:22:24.310 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 02 CB 3E 00 00 F3 4A 00 A6 00 A6 09 15 13 8A 04 2C 32 | -49 dBm
09:22:24.397 > Interrupt received
09:22:24.423 > RX 866.00 MHz --> 95 83 76 10 97 80 10 26 80 83 00 00 00 2D 03 E7 00 B3 00 03 61 30 7A | -47 dBm
09:22:24.796 > PowerMeterClass: TotalPower: 1524.65
09:22:24.883 > [DPL::loop] ******************* ENTER **********************
09:22:24.903 > [DPL::loop] battery interface disabled, SoC: 0 %, StartTH: 80 %, StopTH: 20 %, SoC age: 8543 s, ignore: no
09:22:24.925 > [DPL::getBatteryVoltage] BMS: -1.00 V, MPPT: -1.00 V, inverter: 31.70 V, returning: 31.70V
09:22:24.950 > [DPL::loop] dcVoltage: 31.70 V, loadCorrectedVoltage: 31.79 V, StartTH: 1.00 V, StopTH: 0.00 V
09:22:24.975 > [DPL::loop] StartTH reached: yes, StopTH reached: no, inverter is producing
09:22:25.001 > [DPL::loop] SolarPT disabled, Drain Strategy: 1, canUseDirectSolarPower: no
09:22:25.022 > [DPL::loop] battery discharging allowed, PowerMeter: 1525 W, target consumption: -200 W
09:22:25.046 > [DPL::setNewPowerLimit] calculated: 1811 W, requesting: 1700 W, reported: 1640 W, diff: 60 W, hysteresis: 25 W
09:22:25.071 > [DPL::updateInverter] sending limit of 85.0 % (1700 W respectively), max output is 2000 W
09:22:25.123 > RX Period End
09:22:25.161 > Success
09:22:25.179 > [ 8544.054] DPL: waiting for a power limit command to complete
09:22:25.206 > TX ActivePowerControl 866.00 MHz --> 51 91 43 32 52 80 10 26 80 81 0B 00 03 52 00 01 35 61 5B
09:22:25.260 > Interrupt received
09:22:25.388 > RX 866.00 MHz --> D1 91 43 32 52 80 10 26 80 81 00 00 0B 00 14 07 CC | -33 dBm

@schlimmchen
Copy link
Collaborator Author

@chrisli01 Hast du ein System ohne Batterie? Dann warte bitte die Veröffentlichung von #733 ab und mach den Haken rein "Inverter wird von Solarmodulen gespeist", dann wird dein Inverter auch nicht mehr in den Standby geschickt im Regelbetrieb.

@chrisli01
Copy link

Ein Traum, DANKE!!!!
Ich warte…..

Wird das ein offizielles Update??

@schlimmchen
Copy link
Collaborator Author

Ja. Und du bist nach @Janorei der zweite der innerhalb von 7 Minuten danach fragt... Muss das "dringend" release't werden? Bis zum nächsten Release kannst du auch die Binaries aus dem Build-Run zu #733 verwenden, siehe https://github.com/helgeerbe/OpenDTU-OnBattery/actions/runs/8215332288?pr=733

@Janorei
Copy link

Janorei commented Mar 14, 2024

Ja. Und du bist nach @Janorei der zweite der innerhalb von 7 Minuten danach fragt... Muss das "dringend" release't werden? Bis zum nächsten Release kannst du auch die Binaries aus dem Build-Run zu #733 verwenden, siehe https://github.com/helgeerbe/OpenDTU-OnBattery/actions/runs/8215332288?pr=733

Also ich kann warten, bis dahin läuft bei mir der Branch. Von mir aus bitte lieber keine überhasteten eiligen neuen Versionen, sonder alles sauber getestet :-)

@chrisli01
Copy link

IMG_8819

@chrisli01
Copy link

Was muss ich da jetzt machen?

WR wird von SM gesprist habe ich auf ein.
muss ich Batterie SoC ignorieren auch auf ein???

@spcqike
Copy link

spcqike commented Mar 14, 2024

Wenn ich mich richtig erinnere, sind alle weiteren Einstellungen im DPL egal, wenn der wechselrichter im „solar only“ betrieb is.

die Seite muss noch aufgeräumt werden. So dass dann Licht benötigte Elemente verdeckt werden.

@schlimmchen
Copy link
Collaborator Author

Wenn ich mich richtig erinnere, sind alle weiteren Einstellungen im DPL egal, wenn der wechselrichter im „solar only“ betrieb is.

Naja, ganz stimmt das natürlich nicht, es gibt natürlich auch Einstellungen, die für Systeme ohne Batterie dennoch relevant sind. Aber Batterie Schwellwerte und Solar-Passthrough Einstellungen sind in der Tat allesamt irrelevant.

die Seite muss noch aufgeräumt werden. So dass dann Licht benötigte Elemente verdeckt werden.

Kommt. Sehr bald.

@Janorei
Copy link

Janorei commented Mar 14, 2024

Was muss ich da jetzt machen?

WR wird von SM gesprist habe ich auf ein. muss ich Batterie SoC ignorieren auch auf ein???

Ich habe den Branch aus dem Build-Run zu #733 laufen mit einem geregelten HM 800.
Bei mir gibt es kein Shutdown mehr. Diese Einstellungen funktionieren bei mir hervorragend:
grafik

@chrisli01
Copy link

Vielen Dank!

werds die nächsten Tage testen.

@chrisli01
Copy link

Habs heute testen können….
WR geht nicht mehr auf gelb und sonst funktioniert auch alles super bzw ist nichts aufgefallen was nicht pasdt!🤗🥳🥳

Copy link

This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion or issue for related concerns.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Apr 15, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants