Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion delegates/dvcc.py
Original file line number Diff line number Diff line change
Expand Up @@ -944,6 +944,8 @@ def get_input(self):
('com.victronenergy.vecan', [
'/Link/ChargeVoltage',
'/Link/NetworkMode']),
('com.victronenergy.hub4', [
'/Overrides/FeedInExcess']),
('com.victronenergy.settings', [
'/Settings/CGwacs/OvervoltageFeedIn',
'/Settings/Services/Bol'])]
Expand Down Expand Up @@ -1306,7 +1308,9 @@ def feedback_allowed(self):
# enabled'. This ignores other setups which allow feedback: hub-1.
return self.has_ess_assistant and self._multi.ac_connected and \
self._dbusmonitor.get_value('com.victronenergy.settings',
'/Settings/CGwacs/OvervoltageFeedIn') == 1
'/Settings/CGwacs/OvervoltageFeedIn') == 1 and \
self._dbusmonitor.get_value('com.victronenergy.hub4',
'/Overrides/FeedInExcess') != 1

def _update_solarchargers_and_vecan(self, has_bms, bms_charge_voltage, max_charge_current, feedback_allowed, stop_on_mcc0):
""" This function updates the solar chargers and VE.Can connected
Expand Down