It seems so simple once you get it working! I will try to learn more about cards and sensors and templates. I managed to get the inst_energy_difference card installed to my dashboard so wait to see what happens tomorrow if we get any sunshine here in the UK! I also made some automation with positive values of the inst_energy_difference as the trigger so hopefully my UFH will come on at different solar outputs for each room.
P.S. what is that card called which graphs two values? I couldnt find it in the dashboard and tried searching for dual cards but did not uncover anything yet.
Hello, I would love to be able to recreate the enphase energy website display, EDIT: no time for this right now. ignore me.
since my installer wont let me have access to enlighten and enphase says its up to the installer. long story but tl;dr i cant get access.
specifically , a display like this with the grid of panels that are color coded, each panel color coded to the amount of wattage they are producing. e.g. grey = zero watts, red = under 100 w, orange 101-200, 201-250watts yellow, green 251-300w+
i want this because i have some trees and i am thinking of chopping some down to see results.
I guess I have to learn the scripting, was just hoping if someone already did something similar that they could share , or share tips / tricks…
That being said, I don’t find the reports or displays in Enlighten Manager to be very useful to me the homeowner. That solar panel heat map is useful if you are looking at it at the right time. Time based graphs are much more useful.
If you haven’t already in home assistant, plot the power output, and the sun elevation. Since I don’t have any trees tall enough to shade my roof, the power output (current watts) follows roughly the same curve as the angle of the sun. (At least until it gets cloudy.) I’m using a basic template sensor to extract the elevation angle from sun.sun. I also use that sensor to figure out the right time to turn on the outside lights. On clear days any drops in output are most likely to be shading.
Since the sun angle changes throughout the year you might want to look at any historical data you have before taking down any trees that will take a long time to grow back. For part of the year my chimney shades a couple of my panels in the afternoon. If I looked at only the data from that time of year, I wouldn’t have put panels in that place. Over the course of the year, they manage to generate enough energy that they were worth installing.
I can access and download my inverter data directly right now over my local network from my envoy s. I had homeassistant doing that, although my sd card just burned out last night so i need to redo my rpi install .
Well you could always look at your current system inverter numbers and record them (so you don’t have to go up on the roof and under all the panels), then go buy yourself a new Envoy-s and Install it yourself. It’s easy enough. But you would have to send a support request to Enphase to unregister the micro inverters from the old Envoy-s did that they can be re registered on to the me one.
Following on from @gregtd’s great work, I’ve made an update to the Enphase Envoy sensor. This change allows the update rate of the Inverters production to be adjusted independently of the other sensor production updated rate.
I made this change to fix a problem that I was encountering where the Enphase Envoy sensor data would be Unavailable for long periods of time. By looking at the sensor debug logs I could see that the time taken to fetch the data from the Envoy-S would increase until it exceeded the 30s timeout limit and then it could stay unavailable for long periods. After a bit of searching I found that this was a know issue related to overloading the Envoy-S server.
Since the Inverters only update every 5 or 15 mins, depending on Envoy-S configuration whereas production data updates every minute it makes sense to decouple the two update rates.
The change introduces two new configuration parameters:
inverter_update_period - integer value which defines minutes between Inverters data update requests sent to Envoy-S
inverter_logging_full - boolean value that defines whether to send the last Inverters data during a async_update_data() fetch so that the inverter entity information doesn’t show Unknown.
as I don’t want to fill my logs with duplicate data. Not including the new configuration parameters, and thus leaving them at defaults, will result in behaviour identical to the current sensor.
If you want to try my update then you will need to replace the homeassistant/components/enphase_envoy/sensor.py with this version. This change also requires an update to jesserizzo/envoy_reader included in PR#63 which is located at /usr/local/lib/python3.8/site-packages/envoy_reader/envoy_reader.py for my system.
After changing these two files and updating your configuration.yaml you will need to restart HomeAssistant.
I have also added associated debug statements, so you can see what the sensor is doing by enabling debug logging:
logger:
default: info
logs:
homeassistant.components.enphase_envoy: debug
Does this method of Energy Independence require the HA instance to have been running from midnight to get the historical Imported Power reading from 00:00? I note on the Enphase Enlighten App that they have a “Imported” energy figure. Do you know if it is possible to extract that from the Ehphase Envoy-S directly as with the other available data in HA using any addition to this:
But they don’t subtract the solar that we export to grid so their percentage is on the favorable side to us, but I guess helping mother earth with our green solar.
Hopefully someone will add support to read Envoy data on Enpower and Encharge batteries as well. I see that http://envoy.local/home.json returns some data on both, for those Envoy’s which have the latest firmware.
The difference between the two is the percentFull attribute.
I’m thinking rather than display the above data in Home Assistant for everyone, only display the battery data if the percentFull attribute is present, which would result in something like this in Home Assistant:
Is percentFull always only shown for systems that have batteries installed?
For @ryans suggestion to display the status of the Encharge Smart Switch, would it make sense to display it as a separate entity in Home Assistant as this device can be installed without Batteries?
I am struggling to get off the ground here. New to HA. Have SSH setup, have edited my configuration.yaml with the following at the end of the file - so it looks like this in its entirety:
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
I have done nothing with any python scripts etc… not sure if this matters, but am running HA on Pi. I do not seem to have a homassistant or a components directory so unsure where to start.
Can anyone offer some baby steps for me to get going please?