jeanmarc77 / 123solar

123Solar is a lightweight set of PHP/JS files that makes a web logger to monitor your photovoltaic inverter(s). It just need a web server and PHP, no databases are even needed. The philosophy is: To keep it simple, fast, with a low foot print to run on cheap and low powered devices.
GNU General Public License v3.0
36 stars 12 forks source link

Feature request. Add notification when there is no current on the array. #1

Open hmakmur opened 3 years ago

hmakmur commented 3 years ago

After loosing over 10 months of solar production because fuses on my array were blown last year,I installed 123solar. I was hoping that 123solar would help notify me when something bad happens to my solar array. Unfortunately this was not so. 123Solar helped make me aware by luck today that my solar production is much lower than expected. Looking back at the graph, I notice 6 weeks ago one of the array shows 0 current and again I found bad fuse.

Would it be possible to add a notification when an array went to 0 amp? this would help tell when the fuses went bad. thanks!!

jeanmarc77 commented 3 years ago

I believe this sort of warning should come from your inverter protocol via alarms/warnings check. Which one are you using ?

hmakmur commented 3 years ago

I use aurora protocol on PowerOne inverter and it does not show any notification. I looked the event file and I got nothing. It would be nice to report 0 current if this is not too hard to do and it would work for any inverter.

jeanmarc77 commented 3 years ago

Too bad.. Checking if production on arrays could be possible but i believe it's not the job of 123s to check them. The 'protocols' should returns alarms and warnings. That said, if you look at your montly data you could have hint that something's wrong...

jeanmarc77 commented 3 years ago

It could be done by tweaking aurora_checks.php to return $ALARM or $MESSAGE while checking $IxP. You may have false warnings in case of snow covering panels and also at sunrise, sunset

hmakmur commented 3 years ago

You are correct. I did not think of the false alarm issues. Alternatively, I can connect 123Solar with HomeAssistant and do the notification logic there. Thanks for your quick response.