-
Home Assistant Eskom Prepaid
@hilt_ctn thanks so much for your response. On point 2, I have a rolling total that resets at midnight. When it goes back to zero it effectively adds back the units used to the total. I created the daily usage sensor via the utility meter helper. I am at a loss of how to get the rolling total to work such that I don't need to manually update the total units left every day. Thanks again for your help.
-
Home Assistant Eskom Prepaid
@kellerza noob question. Sorry in advance. 1. How can I change the input text code below to input number? input_text: prepaid_units: name: Enter Prepaid units from meter pattern: '\d+(\.\d+)?' mode: password icon: mdi:home-lightning-bolt-outline min: 1 max: 10 2. How can I automatically enter the total based on what it is at 00H00? Many thanks in advance.
-
-
-
Sunsynk Grid disconnect with no cut in grid supply
Hello, this has happened a few time over the last few days. My Sunsynk Inverter sends a Grid Disconnect notification and then a minute or so later sends a Grid Connection restored notification. However, there is not interruption in the Grid Supply. The latest example is shown below where the Grid Power is 0 but frequency & voltage etc. seems normal. Does anyone know what the explanation for this could be? Many thanks in advance
-
Is it normal for the panels to produce single digit Watts at night?
Hello, its 22h56 and my panels are showing 7W of power (String 1 = 2W and String = 5W). Its a overcast and rainy night, no Moon (in case that has an effect). Is it normal for the Panels to produce single digit Watts at night? If not, what is the possible cause/fix? Many thanks in advance!
-
MC4 Connector Compatibility Question
Hello, I was wondering if anyone could help. I have panels (that I want to install) that use the following PV-LR5 connector (technical documents attached): Would there be an issue if I used the TOSUNLux MC4-1 Connector (see below) to connect my panels to the inverter (via the combiner box)? If it is a problem, could someone recommend a compatible MC4 connector to link up to the PV-LR5 connector? Many thanks in advance! LONGI-LR5-Manual.pdf Datasheet LR5 Connector V1.pdf
-
jtruono reacted to a post in a topic:
**SOLVED** Solar Assistant & Sunsynk 2-in-1 BMS Port: Cannot get it to work
-
-
Home Assistant Sunsynk Power Flow Card and Dashboard
-
-
Max size panels on the 5kW Sunsynk
Thank you! I really appreciate your guidance in this!
-
Max size panels on the 5kW Sunsynk
Quick follow-up (for the avoidance of doubt). Current set-up: Sunsynk 5kW Inverter Sunsynk 5kWh Battery 8 x Longi 505w (LR5-66HPH-505M; see Electrical Characteristics below) panels in a single MPPT Question: I am planning to add 4 more Longi panels (same as already installed). Can I add them to the same MPPT as the existing panels without breaching the current or voltage limits of the inverter? (I am within the watts limit of 6500w for the inverter) Many thanks in advance!
-
SOLVED: Can anyone identify this solar mount? (Its a K2 MICRO RAIL CSM 25)
@Thunderdolt that is what I thought initially but its not, sadly. The profile and set up is quite different (see pics below) The hunt continues...
-
-
-
Home Assistant Sunsynk Power Flow Card and Dashboard
@slipx SOLVED: When I dropped the code in here I noticed that there was a *2 in the code, e.g., data_generator: | return entity.attributes.detailedForecast.map((entry) => { return [new Date(entry.period_start), entry.pv_estimate*2]; }); Not sure where that came from. Sorry for the bother. Here is how it looks now - --- ORIGINAL QUESTION (BASED ON MY OWN ID10T ERROR)--- @slipx Firstly, thanks for all your amazing work. I have a question about the solar forecast graphic. I can't figure out why the forecast in the graph is so high. It is working at expected in the HA Energy Dashboard. See examples below. Your code is showing what looks like x2 value of what is in the HA Energy Dashboard. Any help resolving this would be greatly appreciated. And apologies if I missed a similar post here. I did look. VS HERE IS THE CODE FOR YOUR GRAPH , FYI: type: custom:apexcharts-card header: show: true standard_format: true show_states: true colorize_states: true apex_config: chart: height: 350px tooltip: enabled: true shared: true followCursor: true graph_span: 4d now: show: true label: Now span: start: day offset: '-1day' all_series_config: type: area opacity: 0.3 stroke_width: 1 series: - entity: sensor.solar_assistant_battery_state_of_charge name: Battery float_precision: 0 type: line color: '#f06292' opacity: 0.6 yaxis_id: capacity extend_to: now show: legend_value: true in_header: false group_by: func: last duration: 5m - entity: sensor.solar_assistant_pv_power name: Solar Power float_precision: 3 color: '#ff9800' yaxis_id: kWh unit: kW transform: return x/1000; extend_to: now show: legend_value: true in_header: false group_by: func: avg duration: 5m - entity: sensor.solcast_pv_forecast_forecast_today name: Solar Forecast (D1) extend_to: false color: grey opacity: 0.3 stroke_width: 0 yaxis_id: kWh show: legend_value: false in_header: false data_generator: | return entity.attributes.detailedForecast.map((entry) => { return [new Date(entry.period_start), entry.pv_estimate*2]; }); - entity: sensor.solcast_pv_forecast_forecast_tomorrow name: Solar Forecast (D2) float_precision: 3 extend_to: false color: grey opacity: 0.3 stroke_width: 0 yaxis_id: kWh show: legend_value: false in_header: false data_generator: | return entity.attributes.detailedForecast.map((entry) => { return [new Date(entry.period_start), entry.pv_estimate*2]; }); - entity: sensor.solcast_pv_forecast_forecast_day_3 name: Solar Forecast (D3) float_precision: 3 extend_to: false color: grey opacity: 0.3 stroke_width: 0 yaxis_id: kWh show: legend_value: false in_header: false data_generator: | return entity.attributes.detailedForecast.map((entry) => { return [new Date(entry.period_start), entry.pv_estimate*2]; }); - entity: sensor.solcast_pv_forecast_forecast_today yaxis_id: header_only name: Solar Forecast (D1) color: grey show: legend_value: true in_header: true in_chart: false - entity: sensor.solcast_pv_forecast_forecast_remaining_today yaxis_id: header_only name: Forecast (D1 Remaining) color: grey show: legend_value: true in_header: true in_chart: false - entity: sensor.solcast_pv_forecast_forecast_tomorrow yaxis_id: header_only name: Forecast (D2) color: grey show: legend_value: true in_header: true in_chart: false - entity: sensor.solcast_pv_forecast_forecast_day_3 yaxis_id: header_only name: Solar Forecast (D3) color: grey show: legend_value: true in_header: true in_chart: false - entity: sensor.solcast_pv_forecast_api_last_polled yaxis_id: header_only name: Forecast (Last Update) color: grey unit: ' min.' transform: return ((Date.now()) - (new Date(x).getTime())) / 60 / 60 / 24 show: legend_value: true in_header: true in_chart: false yaxis: - id: capacity show: true opposite: true decimals: 0 max: 100 min: 0 apex_config: tickAmount: 5 - id: kWh show: true min: 0 apex_config: tickAmount: 5 - id: header_only show: false
-
-
SOLVED: Can anyone identify this solar mount? (Its a K2 MICRO RAIL CSM 25)
***SOLVED*** ITS A K2 MICRO RAIL CSM 25 BRACKET. MicroRail CSM 25 Set (k2-systems.com) ---- Hello, I need to identify this solar mount (IBR roof, with adapter for corrugated roof). I have googled and reverse image searched but had no joy. Plenty of brackets out there but I can't find this exact one. Taking a punt to see if the human googles out there can help. May thanks in advance. Follow-up question: If I cannot identify this bracket, would it be possible to use another bracket on my existing install (e.g. renusol) or would that cause potential misalignment with adjacent panels using the bracket pictured?. Put another way are most brackets similar to this (more or less) the same in dimensions? Approximate dimensions are: 240mm (L) 35mm (W) 24mm (H) (without adapter plate for corrugated roof) 30mm(H) (with adapter plate for corrugated roof)
-
Home Assistant Eskom Prepaid
Thanks @Sc00bs actually, I got what i needed out of two of the helper sensors which I renamed to make more sense for my use case - I basically used the following which seems to be enough for me. (Yes, something wrong with IAMMETER reading. Not sure why.)
-
rgt.dnl reacted to a post in a topic:
Question: How to get (theoretical) MAX Watts out of Solar Panels?
-
Home Assistant Eskom Prepaid
I have just installed this on my meter. Seems to be tracking my meter much better than IAMMETER. Will feedback after a bit more time testing. I fount it very hard to get the exact LM393 Photodiode. I eventually found it at Leobot Electronics (Pretoria). Quite expensive though when you add on postage to the Cape.
-
Home Assistant Eskom Prepaid
@Sc00bs Thanks for this. Unfortunately I cannot get this to work. I had to manually create the templates as the code was giving errors. I am actually using the Home | Home Assistant Glow 🌟 (glow-energy.io) mentioned by @hilt_ctn above as the total grid use number. I am almost certainly doing something wrong because the nothing updates. I suspect the issue is in the script but i can't see what is wrong there - alias: Update Prepaid Units sequence: - service: input_number.set_value target: entity_id: input_number.enter_prepaid_units_from_meter data: value: '{{ states(''input_number.enter_prepaid_units_from_meter'') | float }}' - service: input_number.set_value target: entity_id: input_number.prepaid_units_left data: value: '{{ states(''sensor.prepaid_units_left'') | float }}' - service: input_number.set_value target: entity_id: input_number.initial_prepaid_units data: value: '{{ states(''input_number.initial_prepaid_units'') | float }}' - service: input_datetime.set_datetime target: entity_id: input_datetime.last_update data: datetime: '{{ now().strftime(''%Y-%m-%d %H:%M:%S'') }}' mode: single
-
Kwaaikat reacted to a post in a topic:
Question: How to get (theoretical) MAX Watts out of Solar Panels?
-
Question: How to get (theoretical) MAX Watts out of Solar Panels?
@CTskollie I think I've overstated that somewhat. In May I got a brief peak of 3750w but mostly get between 2k-3k on average based on what I can see in Sunsynk Connect. Solar Assistant concurs. Quite puzzled how I got those numbers considering the forecast was partly cloudy with rain on May 7th in Cape Town.
rgt.dnl
Members
-
Joined
-
Last visited