Closed Lorthiz closed 8 months ago
Additional info I did not thought about. I also have solar panels is it possible that energy used from solar panels is triggering a 'blink' while not being calculated by power counter as power consumption?
I have solar panels, my meter shows a solid red light when solar is being exported. I solved this with the timeout: 15 sec value shown below. It's set to 15 seconds, so the light comes on and remains on, after 15 sec the measurement defaults to 0 and doesn't start displaying usage again until the light starts blinking.
sensor:
# WiFi signal
- platform: wifi_signal
name: "${friendly_name} - WiFi Signal"
update_interval: 120s
# Pulse meter
- platform: pulse_meter
name: '${friendly_name} - Power Consumption'
id: sensor_energy_pulse_meter
unit_of_measurement: 'W'
state_class: measurement
device_class: power
icon: mdi:flash-outline
accuracy_decimals: 0
pin: ${pulse_pin}
timeout: 15 sec
internal_filter: 200ms
on_value:
then:
- light.turn_on:
id: led_red
- delay: 0.5s
- light.turn_off:
id: led_red`
@Lorthiz I had a similar issue where Glow was reporting my usage as 33KW, after adding the internal_filter: 200ms
it is now a realistic 1KW
I Have Solar panels also and unfortunately my meter blinks if power is being exported or imported from the grid.
I Have Solar panels also and unfortunately my meter blinks if power is being exported or imported from the grid.
Are you 100% sure it blinks on export?
If I'm exporting it's solid lit, however if I'm exporting for instance 2kw but my house is drawing 2.5kw then the led blinks but only at the rate of 0.5kw import.
I Have Solar panels also and unfortunately my meter blinks if power is being exported or imported from the grid.
Are you 100% sure it blinks on export?
If I'm exporting it's solid lit, however if I'm exporting for instance 2kw but my house is drawing 2.5kw then the led blinks but only at the rate of 0.5kw import.
Yeap as my Glow matches the lcd display of current solar output minus what the house is drawing.
I also see the led blinking when the solar is over the house draw or under the house draw.
Did you find a fix for this?
Try using the left calculation method for the daily power sensor instead of the default, that fixed the issue for me
Is there a somewhat in-depth explanation of what makes the difference in these methods? Because if this makes it easier for people with solar panels to use the Glow, that would be very nice.
@klaasnicolaas here you go:
Maybe not a bad idea to add the method: left
to the code (but as a comment) and explanation in the FAQ 🤔
GPIO26 fixed all my high readings
https://github.com/klaasnicolaas/home-assistant-glow/issues/300#issue-1832134027
Closing the issue, if your measurements are too high, it is best to first check whether you have properly adjusted the photodiode in terms of sensitivity and, if that does not help, set the internal_filter
(see also the docs).
Hello, I am kind of new to this whole HA/ESPHome/monitoring/sensors thing, but I wanted to check how accurate glow is nad from my basic math comparing power on my power counter(the main one mounted by power company) this is what I got: At midight of 09.04.2022 there was X, At midnight of 10.04.2022 there was Y, Difference between X and Y is 10,9kWh, Glow collected data is showing 13,37kWh so that is error of above 20% ;/ Now I am trying to find a cause for that, from what I understand glow is reacting too much and recording too much data. I have photodiode, I set
internal_filter: 100ms
, diode is inside 3dprinted case and I used thin 2sided tape to mount it to the power counter - power counter is also in a pretty dark place so there is little chance that Glow could fire from sunlight or light bulbs. So I think that conditions should be correct for it to work properly. Logs are somethign that makes me a little suspicious. There are duplicated records for total energy/daily energy inside. If that is not a problem are there any more settings I can change to make it more accurate? If it fires too often meaby I should increaseinternal_filter
even more?I set
Daily energy
in Home Assistant as my main 'power consumption'.