Fronius Gen24 python script

Hi all.

I’ve published my GitHub repo for a project to publish Fronius Gen24 (with smart meter) to PVOutput. Hope you find it useful.

If anyone has any experience with the solar_api please reach out. I’m looking for a way to find the daily energy generated (v1).

Thanks,
Shannon

Hi @shannonp,

I overcame this particular problem by saving the GEN24’s “TOTAL_ENERGY” value at MIDNIGHT and then subtracting this value from subsequent ( 5 minutely ) values of TOTAL_ENERGY read from the GEN24 for the remained of the day.

Needless to say it is only possible to upload accurate values for v1 after the first MIDNIGHT.

DAILY_ENERGY = TOTAL_ENERGY_NOW - TOTAL_ENERGY_MIDNIGHT.

Grannos