Solar panels and battery - any real world reccomendations?

Presumably you don't currently have any solar. If that's the case and you expect to export a reasonable amount, then you definitely need to find an MCS installer if you want an easy way to get paid for exports, it pains me to say that, but that's the way it is. If no MCS you can go the Octopus trial route, but that's not clear what's involved and whether they're acceptable you.

If you're really not going to be generating much and will self use it all, it might be considerably cheaper to not bother with MCS.

If you say what area you're in, we might be able to recommend someone.

As to the last question, not for beer money, maybe very expensive champagne amounts of money ;)
I've engaged an installer who is going to do a mock-up. I think I'll go from there then. I will also book an appointment with Nationwide who seem to offer 0% Green Energy loans as part of our mortgage; could be a super cheap way to just pay someone end to end.

Although because I want to put it on the workshop roof, I think I may be installing my own panels no matter what. Did you document your panel install/rail system?
 
Although because I want to put it on the workshop roof, I think I may be installing my own panels no matter what. Did you document your panel install/rail system?

If an installer is confident the shed is strong enough, then they will likely install on it, but it may put some off.

It's in my signature, but I guess your either on a mobile device or have signatures turned off.

 
Soil pipe cut down and vented tile done. Was a bit of a hassle. Could not get any plumbers to do it as a small crawl space and a bit of a fiddle. The outside bit was more straightforward with a bit of sawing.
phowar that pong when all the smells get trapped under the solar panel :cry:
also, how does that stop rainwater leaking inside? interested to find out
 
Last edited:
phowar that pong when all the smells get trapped under the solar panel :cry:
also, how does that stop rainwater leaking inside? interested to find out

Water travels via an internal channel of the vented tile out the bottom of it
 
How do i get my production data from my fox inverter into HA ( done that bit ) and then report that data into pvoutput via HA, confused.com

I used the following in configuration.yaml:

Code:
## Solar Output to PV Output
shell_command:
  pvoutputcurl: >
    curl -d "d={{now().strftime("%Y%m%d")}}"
         -d "t={{now().strftime("%H:%M")}}"
         -d "v1={{ (states('sensor.total_pv_power_today') | float * 1000)  | int }}"
         -d "v2={{ states('sensor.total_pv_power_watts') }}"
         -d "v3={{ (states('sensor.real_load_daily') | float * 1000)  | int }}"
         -d "v4={{ (states('sensor.real_load') | float * 1000)  | int }}"
         -d "v6={{ states('sensor.h1_5_0_e_rvolt') }}"
         -H "X-Pvoutput-SystemId: XXXXXX"
         -H "X-Pvoutput-Apikey: XXXXXX"
         https://pvoutput.org/service/r2/addstatus.jsp

and this automation:

Code:
alias: Upload to PVOuput
description: Upload to PVOuput
trigger:
  - platform: time_pattern
    minutes: /5
action:
  - service: shell_command.pvoutputcurl
    data: {}
mode: single

Sensor names will be different for you as using two inverters means I need custom sensors to calculate solar and load values correctly.
 
I used the following in configuration.yaml:

Code:
## Solar Output to PV Output
shell_command:
  pvoutputcurl: >
    curl -d "d={{now().strftime("%Y%m%d")}}"
         -d "t={{now().strftime("%H:%M")}}"
         -d "v1={{ (states('sensor.total_pv_power_today') | float * 1000)  | int }}"
         -d "v2={{ states('sensor.total_pv_power_watts') }}"
         -d "v3={{ (states('sensor.real_load_daily') | float * 1000)  | int }}"
         -d "v4={{ (states('sensor.real_load') | float * 1000)  | int }}"
         -d "v6={{ states('sensor.h1_5_0_e_rvolt') }}"
         -H "X-Pvoutput-SystemId: XXXXXX"
         -H "X-Pvoutput-Apikey: XXXXXX"
         https://pvoutput.org/service/r2/addstatus.jsp

and this automation:

Code:
alias: Upload to PVOuput
description: Upload to PVOuput
trigger:
  - platform: time_pattern
    minutes: /5
action:
  - service: shell_command.pvoutputcurl
    data: {}
mode: single

Sensor names will be different for you as using two inverters means I need custom sensors to calculate solar and load values correctly.
Thanks for this - the problem is i dont know where to put this information
 
Try the following thread, you might get more help there.

I hate the yaml, typed some stuff into it this morning and it complained about the indentation spaces, sorted it in the end but it does seem rather ridiculous.

I prefer to use Node Red where possible.

 
Last edited:
We upsized our house somewhat recently which has solar panels and is on FIT. There are no smart meters.

Thinking of getting them installed. Can anyone think of a reason not to? Would it mess with FIT? I would think not as it has its separate generation meter.

Also say I go smart meters with octopus, would their app report what was generated and exported?
 
We upsized our house somewhat recently which has solar panels and is on FIT. There are no smart meters.

Thinking of getting them installed. Can anyone think of a reason not to? Would it mess with FIT? I would think not as it has its separate generation meter.

Also say I go smart meters with octopus, would their app report what was generated and exported?
No reason not to get them.

No impact on FIT.

Yes, you can also request a ‘home mini’ and get real time reporting in the app.

Edit: not the export as you are on deemed export rather than an export tariff. I think you’ll still be able to take manual export readings.
 
Last edited:
  • Like
Reactions: TNA
No reason not to get them.

No impact on FIT.

Yes, you can also request a ‘home mini’ and get real time reporting in the app.

Edit: not the export as you are on deemed export rather than an export tariff. I think you’ll still be able to take manual export readings.

Got one of those home mini things. Had it for my last house but never used it in the end. Hopefully can just use that.

Cool will arrange for smart meters to be installed soon :)
 
Back
Top Bottom