Monitoring and controlling - HOYMILES microinverters
-
- Posts: 129
- Joined: Thu Mar 02, 2023 10:15 pm
- Location: germany
- Has thanked: 70 times
- Been thanked: 28 times
Re: Monitoring and controlling - HOYMILES microinverters
Hello everyone,
I leave no stone unturned, so I tested the whole thing with a ESP32S3 on my VGA display and everything worked perfectly-at least that's from my last question
now.. is either the ESP32 defective or something else - I'll look into it
I think I'll try to rewrite the code for a VGA display
I leave no stone unturned, so I tested the whole thing with a ESP32S3 on my VGA display and everything worked perfectly-at least that's from my last question
now.. is either the ESP32 defective or something else - I'll look into it
I think I'll try to rewrite the code for a VGA display
You do not have the required permissions to view the files attached to this post.
Modules : 3xESP32-Cam MB (Chip"DM ESP32 S" ),AI-Thinker Audio Kit (ES8388), ESP32 Dev Kit with Display
- cicciocb
- Site Admin
- Posts: 2717
- Joined: Mon Feb 03, 2020 1:15 pm
- Location: Toulouse
- Has thanked: 576 times
- Been thanked: 1958 times
- Contact:
Re: Monitoring and controlling - HOYMILES microinverters
One of the reason can be the free ram available.
Check the real RAM available with the command WLOG ramfree(1) or restart the module and then check the WLOG WGET$("....) alone
Check the real RAM available with the command WLOG ramfree(1) or restart the module and then check the WLOG WGET$("....) alone
- cicciocb
- Site Admin
- Posts: 2717
- Joined: Mon Feb 03, 2020 1:15 pm
- Location: Toulouse
- Has thanked: 576 times
- Been thanked: 1958 times
- Contact:
Re: Monitoring and controlling - HOYMILES microinverters
I cannot reproduce your problem, the WGET$ works well for me on an esp32 with latest version
-
- Posts: 129
- Joined: Thu Mar 02, 2023 10:15 pm
- Location: germany
- Has thanked: 70 times
- Been thanked: 28 times
Re: Monitoring and controlling - HOYMILES microinverters
Ok, then the module must have a defect - can you please delete the last 10 posts here?
thank you
Ron
thank you
Ron
Modules : 3xESP32-Cam MB (Chip"DM ESP32 S" ),AI-Thinker Audio Kit (ES8388), ESP32 Dev Kit with Display
- cicciocb
- Site Admin
- Posts: 2717
- Joined: Mon Feb 03, 2020 1:15 pm
- Location: Toulouse
- Has thanked: 576 times
- Been thanked: 1958 times
- Contact:
Re: Monitoring and controlling - HOYMILES microinverters
I don't think that is the module. What kind of model is?
The best should be to try with another esp32
The best should be to try with another esp32
-
- Posts: 129
- Joined: Thu Mar 02, 2023 10:15 pm
- Location: germany
- Has thanked: 70 times
- Been thanked: 28 times
Re: Monitoring and controlling - HOYMILES microinverters
this
https://www.az-delivery.de/products/esp ... r-soldered
together with
https://www.az-delivery.de/products/az- ... -und-esp32
there were also the problems with the "touch" function - do you remember ? - It doesn't work now either, although it probably works for all others - must be due to the module
https://www.az-delivery.de/products/esp ... r-soldered
together with
https://www.az-delivery.de/products/az- ... -und-esp32
there were also the problems with the "touch" function - do you remember ? - It doesn't work now either, although it probably works for all others - must be due to the module
Modules : 3xESP32-Cam MB (Chip"DM ESP32 S" ),AI-Thinker Audio Kit (ES8388), ESP32 Dev Kit with Display
-
- Posts: 155
- Joined: Fri Dec 09, 2022 10:03 am
- Has thanked: 101 times
- Been thanked: 20 times
Re: Monitoring and controlling - HOYMILES microinverters
@Ron
I have tested with Tasmota 4-Relais with wlog
And result is
{"POWER2":"ON"}
{"POWER2":"OFF"}
{"POWER2":"ON"}
{"POWER2":"OFF"}
Best regards Helmut
I have tested with Tasmota 4-Relais with wlog
Code: [Local Link Removed for Guests]
wlog WGET$("http://192.168.0.22/cm?cmnd=Power2%20TOGGLE")
{"POWER2":"ON"}
{"POWER2":"OFF"}
{"POWER2":"ON"}
{"POWER2":"OFF"}
Best regards Helmut
-
- Posts: 129
- Joined: Thu Mar 02, 2023 10:15 pm
- Location: germany
- Has thanked: 70 times
- Been thanked: 28 times
Re: Monitoring and controlling - HOYMILES microinverters
ok Helmut and thank you ,
all my problems were really caused by defective ESP modules, I have now decided on the "shellyEM" and it runs so far except for the last step - to send the singnal to the microinverter - I'm afraid to destroy something - but that's still to come...
But it's good to know that this is also possible with Tasmota
Ron
all my problems were really caused by defective ESP modules, I have now decided on the "shellyEM" and it runs so far except for the last step - to send the singnal to the microinverter - I'm afraid to destroy something - but that's still to come...
But it's good to know that this is also possible with Tasmota
Ron
Modules : 3xESP32-Cam MB (Chip"DM ESP32 S" ),AI-Thinker Audio Kit (ES8388), ESP32 Dev Kit with Display
-
- Posts: 155
- Joined: Fri Dec 09, 2022 10:03 am
- Has thanked: 101 times
- Been thanked: 20 times
Re: Monitoring and controlling - HOYMILES microinverters
Bei so einem ähnlichem Projekt möchte ich gerne Json Daten zB 230,34567890 als Zahl mit nur einer Kommastelle haben.
Ich habe mich damit versucht, gibt nur Fehlermeldungen....
Hat jemand einen Tipp?
JSON bekomme ich aus OpenDTU per JSON
For a similar project, I would like to have Json data,
for example 230.34567890 as a number with only one decimal place.
I tried this, but it only gives me error messages...
Does anyone have a example?
Ich habe mich damit versucht, gibt nur Fehlermeldungen....
Hat jemand einen Tipp?
JSON bekomme ich aus OpenDTU per JSON
For a similar project, I would like to have Json data,
for example 230.34567890 as a number with only one decimal place.
I tried this, but it only gives me error messages...
Does anyone have a example?
Code: [Local Link Removed for Guests]
'Vorlage aus Help
'example from help, my a is a json$...
'a = 12,34567890
'Print STR$(a, "%2.4f") ' gibt 12.3456 aus
WLOG STR$((json$(a$, "Voltage.v")),%2.2f) ' das geht nicht ,don't run
'Orginal:
Daten$ = Daten$ + "Spannung "+ json$(a$, "Voltage.v")+" Volt "
- PeterN
- Posts: 610
- Joined: Mon Feb 08, 2021 7:56 pm
- Location: Krefeld, Germany
- Has thanked: 290 times
- Been thanked: 341 times
- Contact:
Re: Monitoring and controlling - HOYMILES microinverters
Hi Helmut
I'm not entirely sure, but since JSON$ returns a string, this might be helpful:
WLOG STR$(val(json$(a$, "Voltage.v")),"%2.1f") ' das wird hoffentlich funktionieren
I'm not entirely sure, but since JSON$ returns a string, this might be helpful:
WLOG STR$(val(json$(a$, "Voltage.v")),"%2.1f") ' das wird hoffentlich funktionieren