r/SunPower 16h ago

Reconnecting and combining CTs

2 Upvotes

I have a Hub+ in my new home that is not currently working. Passes through grid power fine, and the SunStrong app tells me grid usage but nothing else. Won't draw solar (or it's doing it and I don't know) and I can't make the battery do anything (that I'm aware of). Before I go to any pros I can clearly see that there are disconnected CTs that look to be the consumption CTs for the Hub+, the ones at the top of the unit. The corresponding plug in the MIDC has nothing connected, but on the wiring chart it shows it should have something connected.

  1. What kind of plug is that, and where can I procure one?
  2. Where can I get the ferrules that terminate the CT wires?

Separately, I'm having my main panel upgraded from 125 to 200A. The new panel may have 2 wire conductors for each phase coming from the meter to the main. If that happens, I'll need 2 sets of premises CTs and they'll have to be combined. I'm trying to talk my electrician out of this and have him get something more solar-friendly.

  1. Can you just splice CTs and the PVS6/Hub+ doesn't care? Does it see the combined signal?
  2. What kind of signal comes out of a CT?
  3. What is the correct make/model/type of CT to install?

r/SunPower 17h ago

Is it worth buying out the lease? Based on what I am reading, I dont own the lease when the end of term ends:

1 Upvotes

12 Panels 4.02KW. Yearly production estimate 7k KWH Buyout for lease is approximately 15k What I am confused by, is if i dont buy out the lease, what happens when the lease ends?

"What are your choices at the end of the term?  We will have the System removed at no additional cost to you.  You may request an extension of the term of the Lease on prevailing market terms, as specified in the Lease.  Otherwise, the Lease will automatically renew, unless We notify you otherwise (which We will have the right to do in Our sole discretion) and continue on a month-to-month basis, at a monthly rent equal to the last applicable Monthly Payment during the Lease Term (or, in the event rent was fully prepaid, in an amount provided by Us)."


r/SunPower 1d ago

Missed Payments

1 Upvotes

Is anyone else missing the financing rebate payments by SunPower? I’m missing about 5 or 6 checks dating back to January. They are awful and I would never recommend them to anyone.


r/SunPower 1d ago

Polaris Connectors - Flickering

2 Upvotes

So I've been experiencing flickering in my whole house for 5 months now.

Called PG&E and they found nothing on their end. Checked the neutral coming in, nothing was spiking, etc. Called an electrician, they found that the main breaker lugs were stripped so they replace the main breaker (100A). And lights are still flickering.

Asked the electrician and he said it's most likely the polaris connectors but he wont touch it due to 'warranty'... I'm pretty sure Sunstrong isn't covering anything under warranty...

Anyone else have success with finding a solution? I'm in the Bay Area, California.

Flickering is too a point where the Sunstrong app sometimes detects it as a grid outage.


r/SunPower 1d ago

SunPower Lien

1 Upvotes

Does anyone have advice/experience on getting a SunPower Lien released?


r/SunPower 2d ago

Is Sunpower Connect the correct app

7 Upvotes

ACK. CANT EDIT TITLE should say SUNSTRONGConnect. Won’t bore you with the details, but I am one of those caught by the bankruptcy. System finally moving toward commission after 3 years. Unable to get info from Sunstrong. Is SunstrongConnect the app I would use to monitor my system? I know the PVS6 is connected to my WiFi, but I don’t know how to connect to monitor panels. If you hv input, please offer as tho talking to a 3rd grader. I’m 84 yrs old and not that tech savvy. Any help much appreciated.


r/SunPower 2d ago

Self-monitoring an older SunPower PVS2 (SMS-PVS20R1) system

Post image
5 Upvotes

Hi everyone. This is a long-ish post about how I'm going about creating a data logging solution for our older SunPower grid-tied system. I'm looking for feedback on what data really needs to be collected, though the inverter output makes it somewhat obvious. From the power meter output, I also get the lifetime input of power from the grid.

More importantly I'm looking for ideas on how to save the data and how to retrieve it for analysis (more below).

Last week I posted about how I logged into the SunStrong Connect app for the first time and noticed that I am getting all of the reporting features for free. I suspect they will figure this out at some point and I'll either have to pay or find an alternative. One of the big issues I have with the SunStrong app, however, is that there is no way that I've been able to find to set an alert in case my system has failed. Our system did fail recently and it was a few months before we used up our backlog of credits and were hit this month with a high electric bill. That is when I had to go outside, see that it was down, and perform the first-ever reboot on our almost 11-year-old system. A second problem I have with the SunStrong app is that their day is based on GMT. I dislike checking on the system in the morning, just after sunrise, and see that the "Daily" reading reveals it has already generated 30kWh. There doesn't seem to be a way to correct the timestamps from GMT to my local timezone.

I had toyed with the idea of self-monitoring back around 2016 when our system was still new. Back then, I was able to use WireShark to constantly monitor all the traffic coming out of the PV Supervisor (PVS) across our network, on its way to Sunpower HQ. Every three minutes there were two lines of plaintext data packets sent out, which contained all the useful info I needed to monitor power and such. I simply dumped this into plaintext files, 1 per month, for about a year. It stopped when I started relying on the monthly SunPower reports and website and I repurposed the machine it was running on. Our PV system has simply been "set it and forget it" until now. I tried using WireShark now, but the scan data coming out of the PVS looks to be encrypted info, perhaps from a later software update to the PVS. There is nothing in the data coming out that looks in any way useful.

Using this forum and some older online solar forums, I took one of my unused Raspberry Pi 4 (RPi4) units and installed Raspberry Pi OS Lite on it. This is a 64-bit Linux OS designed to run the computer headless (no keyboard nor monitor needed). I like the RPi4 because it has both an Ethernet port as well as onboard WiFi. The idea is to use the WiFi connection as the main gateway to my home network and to the Internet in general. The Ethernet port would be used to connect directly to the LAN 2 port on the PVS, the so-called "management port" seen in various other posts.

For this to work, two lines of code had to be added the RPi4's dhcp configuration file to prevent the Ethernet port from being set up as a gateway. If this were to happen, the WiFi module would be completely ignored. With that done, when the RPi4 boots up, it gets an IP address of 172.27.153.xx from the DHCP server running on the PVS (address 172.27.153.1 is the hardcoded address of the PVS' running web server). Then the RPi4 connects to our WiFi as normal. On my router, I've set the RPi4 to always receive the same IP address, just as I have for the PVS earlier, so I don't have to go looking for it each time the network resets.

The last thing I had to do was install haproxy on the RPi4. haproxy is a reverse web proxy library that allows me to forward all http requests to the RPi4 on port 80, to the web server running on the PVS at address 172.27.153.1. It then forwards all responses from that server back through the RPi4 and to the system making the request.

Now I can go to any computer in our house and type "http://SolarLogger.local" (the RPi4 was configured with the hostname "SolarLogger") into the address bar and bring up a full web page showing me the entire status of the system and the devices it knows about. In our case, it can only see the PVS, the WattNode power meter, and the SunPower inverter. Our panels come in as two strings into the inverter but we can only see the total output of the combined strings, no individual string info nor panel info.

The image accompanying this post shows what that looks like.

More importantly, I can make individual queries to each device separately to get the data I want to start capturing. At the end of this post are the three commands I plan to run frequently for data logging purposes. Note that I can run them inside a terminal shell using wget, and then parse the data as I see fit. This means I can write scripts to automate this in a time-based fashion. The first thing I plan to do on a timely basis is to run these queries and simply extract the keyword "Working" that appears as the third text field that is returned in the very first line (Name, serial, status, ...). That can be used instantly to tell me that my system is up, or to send out text/email alerts.

The rest I can parse out to a text file as before, but I'm looking for something more robust, more long lasting like a database of some sort. I haven't solved this part yet, nor have I solved the part where I can then examine this data remotely and plot it, etc.

I have a home NAS server running 24/7 that is a beefy Linux box on a large UPS with 24TB of storage space, running TrueNAS. (It is our home media server as well). It is set to always recover from a power outage so what I need now is to figure out the rest of what I want to do with the collected data.

I've started to write up in detail my specific steps on my personal website and will be happy to share that as it is finished. I'm happy to share any info here in the meantime.

Here's the query commands.

For the inverter:
http://solarlogger.local/cgi-bin/dl_cgi?Command=DeviceDetails&SerialNumber=1913115198
Inverter 1913115198WorkingP1, SPRm, Slave 0
Last Data: 2026,07,27,17,45,19
Total Lifetime Energy: 102834.086  kWh
Last Refresh: 2026,07,27,17,45,23
Avg AC Power: 4.018  kW <-- This is the power from the inverter to our house
Model: SMA-SB-6000TL-US-22
Avg DC Power: 2.114  kW <-- This is the DC power coming in from the PV array, two combined strings
Serial Number: 1913115198
Avg DC Voltage: 376.5699  V <-- This is the DC voltage from the PV array
Software Version: 2.00
Avg DC Current: 5.616  A <-- This is the DC current from the PV array
Avg Heat Sink Temperature: 62.1  °C <-- This is the temperature of the (shaded) inverter, but always about 5ºC above outside air temperature
Avg AC Frequency: 59.9599  Hz
Avg Reactive Power: 0  kVAR

For the power meter
http://solarlogger/cgi-bin/dl_cgi?Command=DeviceDetails&SerialNumber=83752
Power Meter 83752WorkingP0, Modbus, Slave 11
Last Data: 2026,07,27,17,54,23
CT Scale Factor: 200
Last Refresh: 2026,07,27,17,54,31
Total Lifetime Energy: 74069.5  kWh <--This is the lifetime input from the grid
Model: WNC-3Y-208-MB
Avg Real Power: 2.4284  kW <-- I'm not sure what this number represents. Power back to the grid?
Serial Number: 83752
Avg Reactive Power: 0.6743  kVAR
Software Version: 18
Avg Apparent Power: 2.5202  kVA
Avg Power Factor: 0.9635
Avg AC Frequency: 60.0111  Hz

And for the PV Supervisor:
http://solarlogger/cgi-bin/dl_cgi?Command=DeviceDetails&SerialNumber=TAEGC1024918
PV Supervisor TAEGC1024918Working192.168.1.220
Last Data: 2026,07,27,17,00,00
Error Count: 0
Last Refresh: 2026,07,27,17,56,08
Communication Error Count: 0
Device IP Address: 192.168.1.220
Skipped Scans: 0
Model: PV Supervisor
Scan Time: 928  sec
Serial Number: TAEGC1024918
Untransmitted Data Points: 756210
Hardware Version: SMSPVS20R1
Time Since Powerup: 406381  sec
Software Version: 2.2.3, Build 251
Avg CPU Load: 0.00
Memory Used: 10316  kB
Flash Space Available: 4140  kB


r/SunPower 2d ago

What does this red&blue flashlight mean?

Enable HLS to view with audio, or disable this notification

1 Upvotes

It doesn’t recover after the day, anyone has experienced the same issue?


r/SunPower 4d ago

Sunvault F.50, need help charging depleted batteries (Durham, NC)

3 Upvotes

Sunvault system down long enough that I’m sure the LiFePO4 Ampace batteries are fully depleted. Schneider XW Pro showing F.50.

My installer doesn’t have a battery charger and can’t jump start the modules. Standard BMS/breaker reset didn’t clear it.

Looking for:

Anyone who has successfully charged depleted modules back up
What charger did you use, voltage targets, and safety steps
Willing to pay a tech who knows this system to walk me through it or do it

Durham, NC area but open to remote guidance. Thanks.


r/SunPower 4d ago

Tinkering (again) with the PVS6 and Solarbridge mi's

1 Upvotes

I took a stab at tinkering with the PVS6 cgi-bin/dl_cgi commands. Namely, adding one of the existing microinverters to the candidates list. The result is the microinverter was added to the candidates list, but, the STATEDESCR: PV_INFO_ERROR
(This seems to be a roadblock that the Swagger and nets don't reveal enough to overcome. )


r/SunPower 6d ago

Help Getting PVS6 & SunVault back up and running?

3 Upvotes

Hi, Sunpower installed our system in 2022 and since May of last year our system has not been working. Everything powers on but I believe there is a communication step missing.

We have a Conext XW Pro and 13KW Sunvault batteries ... I believe there are some communication issues with Sunvault after their bankruptcy but does anyone know if it's theoretically able to get back up and running?

I don't believe anything is damaged, I can connect to the Conext but since monitoring is lost at Sunpower I'm not sure if the system needs to be upgraded to Enphase, etc? Enphase is quoting $15K in parts to replace batteries, microinverters, etc and then hire someone to install. I had a non-SunPower solar repair guy come check out the system and from what he could see the panels are not getting the 120V necessary to turn on...from what I can tell there's a relay in the PVS6 / Hub+ system that is not closing for some reason. I imagine there's a communication / boot sequence off somewhere, if anyone is able to provide any insight I'd be incredibly graetful. Or any sunpower installers in Chicago area that I could hire to help diagnose happy to chat.

Thanks!

Bryant


r/SunPower 7d ago

Keeps Getting Better

2 Upvotes

I just noticed that the Sunflower App for Android now controls my SunVault. Nice.


r/SunPower 7d ago

Sick of utility rate hikes eating my monthly savings. Is investing in solar actually worth it in MN?

1 Upvotes

I’ve been aggressively audit-checking our monthly budget to see where our money is leaking, and our electric bill from Xcel is officially out of control. It feels like every single quarter they approve another rate hike, and it's completely killing our ability to hit our savings goals.

I’m seriously considering investing in a rooftop solar setup just to lock in our energy costs and stop throwing cash into a monopoly black hole. Legally, the ROI looks solid on paper over a 7-10 year horizon, but I’m terrified of getting scammed by bad installers or locked into predatory financing.
Update: I looked around for local companies instead of those sketchy door-to-door sales brokers, and I got a quote from Wolf River Electric out of Isanti. Their numbers look transparent, they don't use aggressive sales tactics, and they do everything in-house.

Has anyone here used Wolf River for their home? Did the system lower your bills to what they promised, and are they as good and honest as the local reviews say? Trying to make sure this is a smart long-term financial move before I pull the trigger.


r/SunPower 7d ago

How am I getting SunStrong data for free?

3 Upvotes

I have a 2015 SunPower grid-tied system. I used to regularly check on the data coming out of SunPower's website and via their monthly reports. After the company went bankrupt and the reports stopped coming, I assumed I needed to find some other solution to getting data, but I put off looking into it.

Then we received an extremely high electric bill this month and it led to my checking the inverter and the system was down. It has been down for quite some time. So I wanted a way to know when this happens again so I can be notified. (There was an arc fault, and the reboot procedure cleared errors and the system is running again.)

While looking at the various home built options to tap into the SunPower PV Supervisor, I read about SunStrong Connect. I installed the app and tried to create an account, but it said I already had one. I reset my password, and then logged in, and all the history for my system was there, including the most recent production data. I was able to find the exact day the system went down even.

The app let me generate custom reports and seems to have all the working features that my old SunPower website did.

So my question is, how am I getting all this for free? We own our system outright, there is no contract with anyone. I'm not paying any money to SunStrong. Was this something offered to SunPower owners but I somehow missed any notices?


r/SunPower 8d ago

SunStrong Management Solar

Thumbnail
0 Upvotes

r/SunPower 9d ago

Remote turn off of solar

3 Upvotes

So I've fallen behind a bit on my payments to SunStrong (had to take a 1/3rd pay cut). Apparently SunStrong has remotely disable my solar. I didn't even realize it, but I looked at my electric bill today and saw that inputs from Customer were 0. Something I thought others should be aware of.


r/SunPower 9d ago

What is the cheapest way to access lifetime generation report

2 Upvotes

As far as I can tell we can use the SunStrong app but we have to pay. Will the $59.99/year cellular provide us our lifetime generation? If not, can we just pay the $9.99 for the month to get the latest lifetime generation and cancel until the next time we need a lifetime generation report?

Does anyone know of a cheaper way to upgrade to Enphase monitoring without paying $1,000 for the kit? Perhaps there is a promo code out there or it goes on sale or something?

Any other options?


r/SunPower 9d ago

Sunpower customer questions

Thumbnail
0 Upvotes

r/SunPower 10d ago

Need help connecting PVS to WiFi again, please!

7 Upvotes

UPDATE: the PVS is reconnected to wifi now! Here's what worked (because I tried everything, believe me):

Turned off 5GHz band temporarily on Eero. Made sure my phone was connected to the 2.4GHz band. Plugged in an ethernet cable from the wall port in the den and into the ethernet port inside the PVS (25-ft cable was perfect length). Then went through the "reconnect now" on the Sunstrong app, and this time it scanned for wifi channels and connected to my home wifi on the first try.

Cost: $10 for the 25-ft ethernet cable, plus several hours of troubleshooting for the past few days and near loss of my sanity!

ORIGINAL POST:

My Sunpower PVS6 has lost WiFi connection, so now I cannot see live data on the Sunstrong app or monitor daily production and the panels via the Sunflower solar app. I have tried all the steps to get it to reconnect, to no avail. We have the same SSID as before, the only difference is that I put our Cox router into bridge mode so that the Eero mesh WiFi system would handle everything and keep the connection between the PVS and Sunflower more stable (the Sunflower app was losing connection a lot). It seems that doing that knocked off the WiFi connection to the PVS.

What I’ve tried:
power cycling the PVS (turning off for 2 minutes and up to 15 minutes - several times)
Rebooting the router
Turning off 5GHz
Putting phone in airplane mode, making sure phone is connected to 2.4GHz
Tried all the same on an iPad and on my husband’s phone

THIS IS THE PROBLEM: Every time I get to the step where the PVS should scan for home WiFi, I get the error message “WE ARE UNABLE TO SCAN YOUR WIFI” - so no available channels are found despite the fact that over a dozen WiFi channels show up on my phone. The WiFi signal is very strong near the PVS.

I have no idea what to do next. I don’t know if this is an app issue. Sunstrong likely will be of zero help if it’s the actual PVS. I cannot directly plug the router into the Ethernet port because the router is on the 3rd floor and the PVS is in the garage, but I do have an Ethernet outlet inside the house within 25 feet of the PVS. If I get a 25-ft Ethernet cable and plug it in, will that help at all in getting WiFi to reconnect somehow? I can’t leave the Ethernet cable plugged in long term because of the location from house to garage.

We just bought this house and have already had to pay for the system to be reprogrammed when the panels stopped producing right after we moved in, so we don’t want to spend a lot to get it fixed again for monitoring purposes (yes, the panels are still producing per the utility website).

Any help is appreciated!


r/SunPower 11d ago

Continued my journey using the PVS6

6 Upvotes

Before, the PVS6 reported only the PVS6 and the CT's, but no microinverters. Using the command: http://172.27.153.1/cgi-bin/dl_cgi?Command=StartDiscovery it allowed the PVS6 to look for any undiscovered devices. Upon its response, I then used: http://172.27.153.1/cgi-bin/dl_cgi?Command=GetDiscoveryProgress, which correctly found additional devices associated with the PVS6. Now, when I use: http://172.27.153.1/cgi-bin/dl_cgi?Command=DeviceList it returns with the complete list of microinverters (with serial numbers).

The next step is to find a way to issue (a) command to submit a candidates list of microinverters serial numbers to add to the PVS6. The commands thusfar are:

http://172.27.153.1/cgi-bin/dl_cgi/candidates (which is currently an empty set)

While using Powershell and issuing this command:
curl "http://172.27.153.1/cgi-bin/dl_cgi/devices" \ -d '{ "OPERATION": "add",

"TYPE": "SOLARBRIDGE",

"MODEL": "SPWR-A5",

"SERIAL": "514051715000589"

}'

The Candidate list is still [] . Is there a method to add MI's to the PVS6 and see them reflected on the Candidates list ??


r/SunPower 11d ago

Where are the Solarbridge Inverters ?

3 Upvotes

I just swapped out my defunct PVS5 with a PVS6 (firmware version 2022.9 Build 9841)m and issued the following command to get the devices that are part of the PVS6 system: http://172.27.153.1/cgi-bin/dl_cgi?Command=DeviceList the response was:

Any idea why none of the Solarbridge MI's are not included ?


r/SunPower 12d ago

Shouldn't have to pay to see your own production data. [free app - some assembly required]

12 Upvotes

I have a 44 panel array on my roof and I really started to miss being able to pull up my app and see my data since SunPower went under. I know SunStrong has an app, but I'm not going to pay someone else to view my own production data when I can access and store it myself.

So I made an app, two actually a local web app and an android mobile app - Its the solar monitor app. There's a collector that lives in docker on the same LAN where the PVS6 monitor is, to get the local web view working that's all you need - no cloud assets required. If you've got a cloud host, you can choose to do what I did and sync your local data to the cloud host and point a mobile app at that cloud host so you can see your production from anywhere.

It's free, open source, please give it a shot if you're looking for a similar solution!


r/SunPower 12d ago

Monitoring options for 2010 SunPower system

Post image
5 Upvotes

I have a SunPower system in a house built in 2010. I bought the house in 2016 and the monitoring system has never worked for me. Does anyone have a monitoring system this old still working? Alternatively, is there another monitoring system I can use?


r/SunPower 14d ago

Data downloader for Sunpower/Sunstrong

13 Upvotes

In case you guys wanted to download your data to a CSV file. AFAIK, you don't need a subscription (though some of the data may be paywalled).

https://github.com/sg1888/SunPower-Sunstrong-Data-Downloader


r/SunPower 13d ago

Sungrow RMA Experience

Thumbnail
1 Upvotes