-
-
Sunsynk Internal Consumption and Grid Trickle Feed issues
First, the trickle feed Mine behaves in line with the setting. I have it on 10w, and it will stay between 0-15 quite reliably. But this is as reported by the inverter - I have not used an independent CT to verify this. I have, however, noted that if you enable "solar export" then the grid import will hover around 50w while there is PV production. I don't understand why this happens. Anyway, I've stopped experimenting with export. Second, the internal consumption (or losses) As per some previous comments, the internal "losses" definitely vary depending on what's going on at the time. And those losses usually manifest as heat, which climbs notably when you're harvesting PV and/or using heavy load. Anyway, here's my graph of net losses from yesterday: This is from Home Assistant. I created my own sensor to calculate the net loss. It is basically the sum of inputs (PV, Grid import, Battery discharge) less the sum of outputs (Load, Battery charge, Grid export). I evidently have some timing issues which cause silly spikes in the graph (both positive and negative!) - so try to ignore those. But it is clear to see that in the "UPS mode" (running on batteries, low load) the internal losses are very low, less than 50w most of the time. But when the load increases, and when I'm generating PV power, the losses hover in the 150w-350w range. And, as I said, the increasing temperatures of the AC and DC circuits are evidence of these losses. Here's my DC temp graph over the same period - it gets worryingly hot, despite the fact that I'm running a fan pulling air over the radiator fins constantly. I do unfortunately have it installed in my garage, which I have now realized gets rather warm on summer days - ambient temp in the garage is in the 30C-35C range. I find it surprising that the unit does not even have any cooling fans of its own. Does anyone have any wisdom to share on improving the cooling on these 5.5KW SunSynk units?
-
Dyness 4.8: "Sudden Death" - SOC instantly from 40% to 0% with no load
Hi all. I must apologize for never coming back to update this topic. I did trace the problem. I think all the discussion in this thread about the balancing of the cells, and the strange behavior observed are probably valid, but determining the root cause was the issue. Eventually I found out somewhere obscure that the BMS was not correctly communicating with the Inverter. the installer had failed to set the battery's dip switches correctly for the Sunsynk/Dyness combination. So, we shut down everything, changed the dip switches, and restarted it all. Have not had a moment's trouble ever since. I'd have to go scrummage through my WhatsApp history to find the correct setting we used - so if anyone needs that, just shout.
-
-
Large 'Retro' Power System Display
Wow - you guys are awesome. These projects look like a lot of fun!
-
-
CBI Astute (Tuya) Switches and Home Assistant
@hilt_ctn I finally got around to installing Tuya Local. Much happier!!!! Thank you for the pointer. The integration found a device config that seems to work well for the CBI switches, and this integration enables you to edit the device configs, so I'm working on those to see if I can fine-tune it any further. Two thumbs-up.
-
CBI Astute (Tuya) Switches and Home Assistant
@hilt_ctn, Thanks for your reply. OK wait - there's "LocalTuya" and "Tuya Local" ?!? I think I used "LocalTuya", and it was tricky. I'll have a swing at the other one... I hope I'll still be able to figure out how to access the scheduling capabilities of those switches. But, the other option is to forget that and simply schedule on HA I guess... Thanks.
-
CBI Astute (Tuya) Switches and Home Assistant
Hi all. I have scanned all the conversations I could find about the CBI Astute (ASC and ASI) switches, and how to integrate them to Home Assistant. I've managed to get to the point where I have 3 of them working. Somewhat. But I'm hoping someone here knows a bit more than I've been able to figure out so far. What I have done: Instead of using the "CBI Home" App, I used the "Tuya Smart" App to sync each device to my home Wifi. I have the Tuya accounts set up (both Dev and App accounts), and so I can control the devices via the Tuya Cloud and App. I have the standard Tuya Integration for HA, installed and working, able to control the switches, and see their power, current and voltage sensors. I have a couple of automations that are able to interact with these as I please. What I'd still like to do... First: The CBI switches seem to offer more entities than just the switch, power, current and voltage. But I can't see the other sensors. Does anyone know which is the best "Tuya Switch" to use to correspond with the hardware used by CBI in the Astute switches? I don't remember which Tuya Device I selected for the first one, but for the other two I used "Breaker (Wi-Fi)" under the device options when adding them. This shows 5 entities: switch, voltage, current, power, device restart status. Are there additional sensors? (Perhaps I'm expecting too much?) The App has scheduling capabilities, which must surely be local to the device. But I cannot see any entities that match that capability. Is the scheduling entirely dependent on the Tuya Cloud? The App shows history of consumption over time (per day, month, etc.) But I'm not sure if that data is aggregated in the Tuya Cloud, or on the local device... ? Second: Use the Local Tuya integration so that I'm not dependent on the Tuya Cloud (and hence my Fibre connection) 24/7. I did install Local Tuya, but I had endless trouble with the first switch. Just could not get HA and the switch to talk. I did not keep notes of the errors, so I'll have to retry this before expecting any more help here. I've parked it for now. I'd like to resolve the above item first. I figure I'll try again soon starting with a fresh install of Local Tuya. Thank you all for so much I've learned from this community already. One day I might be able to be the helper rather than the helpee. PS: The three switches I'm using are two of the ASI (Isolators for Geyser and Air Conditioning), and one ASC (Controller for Pool Pump).
-
Notification of grid on/off (CBI Astute)
I know this is a very late response, but anyway... Assuming you're using HA. Is your CBI switch on the non-essential side, and NOT on the generator? Which means it is exposed to the state of the grid? If so, that will tell you about the state of the grid. In my setup I have an automation to tell me when Grid state changes, based on the state change of the CBI switch. I get the alerts within seconds of the grid going ON or OFF. The logic is that if the switch state is 'unknown' or 'unavailable', that tells me the grid is gone. If the switch is 'ON' or 'OFF', that means the grid is present. #------------------------------------------------------------------------------# #--- Automation to Alert when the Grid goes ON or OFF. ---# #--- Triggered by the Geyser Switch's 'switch.geyser_switch' state. ---# #------------------------------------------------------------------------------# id : geyser_grid_state_alert alias : "Geyser Grid State Alert" description : "Geyser Grid State Alert" mode : single #--- Trigger on state changes on the Sunsynk Inverter's grid online sensor. ---# trigger: - platform: state entity_id: switch.geyser_switch from: to: #--- Filter out nonsense state changes ---# condition: - "{{ (trigger.from_state.state in ['unknown','unavailable']) != (trigger.to_state.state in ['unknown','unavailable']) }}" #--- Check the state, and send notifications if necessary. ---# action: - variables: var_grid_state: > {% if states('switch.geyser_switch') in ['on','off'] %} ON {% elif states('switch.geyser_switch') in ['unknown','unavailable'] %} OFF {% endif %} var_alert_sound: > {% if states('switch.geyser_switch') in ['on','off'] %} Alert_SpartanConnected_LowLatency_Haptic.caf {% elif states('switch.geyser_switch') in ['unknown','unavailable'] %} Alert_SpartanDisconnected_LowLatency_Haptic.caf {% endif %} - service: notify.mobile_app_##### data: title: "Grid is {{var_grid_state}}" message: | The Grid State has changed to {{var_grid_state}}. data: subtitle: "Geyser Switch Grid Power is {{var_grid_state}}" group: "HAss Geyser Switch Grid Alert" tag: "HAss Geyser Switch Grid Alert" push: sound: "{{ var_alert_sound }}" interruption-level: active
-
Emporia Vue
Thank you, Joe. Yes, I noted from the photos on this thread it gets rather "busy" in there. An option I might explore will be to install it in the roof above the DB where all the wiring exits the riser and goes on its merry way. But it can be rather hot up there... I found the devices available locally from GeeWiz online (Emporia Vue Gen 2 Energy Monitor - 200A 3-PHASE Sensors and 16x 50A Sensors - GeeWiz) That's the fully populated option, but it's a bit pricey compared to what you paid a year or two ago... Amazon lists this at $165, or R3,100, before shipping and duties...
-
SunSynk 5kW, 8kW and 12kW latest firmware version
Well - paint me impressed! The upgrades were done in the early hours of Saturday morning, which means less than 24 hours after the request, all 4 units done. One of the units went into a bit of a panic afterward (Error F62 - can't say if it was related or not), but after a full shutdown and restart all is well.
-
Emporia Vue
Hi all. I was looking at the Emporia Vue device, so decided I'd get some feedback here first... For those of you who have been using it - are you happy? it looks like the integration options to HA are good. Any comments - PRO or CON? Or perhaps you've found a better option? It looks like the biggest challenge will be fitting it all inside the DB enclosure!
-
-
Home Assistant Sunsynk Power Flow Card and Dashboard
Thank you @Ronnie1102 I’ll check this out.
-
-
Home Assistant Sunsynk Power Flow Card and Dashboard
Hi @Gary Waterworth First - thank you for your integration. I've been running it with great success for about 2 months now - very nice! It was really plug-n-play! I have two questions if I may: 1) I have not seen any way to set the frequency of the data updates from the inverter to the Sunsynk.net service. I have the Sunsynk dongle, not Solar Man. Is it possible, and could you point me at where I can make that setting? 2) If I understood and observed your node-red flows correctly, it fetches updates every 60 seconds? I'd most likely just want to set my data push to that same frequency. That way my automations that respond to load vs PV, etc. will be more responsive than they are now. PS: your work was the first example that I started browsing through after I got HA running, so I've learned a lot of what I know about HAss, and a few things about the Sunsynk Inverter, from your stuff. Thank you!
-
-
Home Assistant Sunsynk Power Flow Card and Dashboard
Mr @slipx - I'm loving this new feature - very nifty. And it adopted my personal colour selections automagically! I'm very new to HA, and the weirdness of YAML etc., and I've never worked with Python..., but I've been in software all my career (30+ years), and I admire the way you approach your work! Your methodical thinking shows in the results! Good work man! Here's my sunny yellow house running on solar power...
-
SunSynk 5kW, 8kW and 12kW latest firmware version
I've just requested the same for the 4 inverters I look after - let's see how quickly this gets done. 🙂
-
Home Assistant Sunsynk Power Flow Card and Dashboard
@kellerza - apologies, I wrote nonsense. My original installation is not yours - it is the work by @Gary Waterworth, which uses the Sunsynk cloud to read the status of the inverter every ~5 minutes. This is currently running with the Power Flow card from @slipx. I have enjoyed learning a lot about HA and node-red while mapping these two add-ons to work together. I have been looking at your work for so long that I conflated it with what I originally installed. My plan is to go with your add-on using the RS485-USB connection to my HA. I just have to get the bits of hardware and wiring organized, and then I'll be using your add-on to move to real-time data, and thus much more responsive control of my non-essential loads (i.e. geyser) based on PV vs. load, etc. And, of course, the ability to write to the inverter to adjust behavior around load shedding, poor weather, etc. Thanks to all you guys who share so much with those of us who are still learning. Perhaps one day I'll be in a position to share something too.
Patrick OReilly
Members
-
Joined
-
Last visited