-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-Automatic refresh of the power limit in the role 'pvinverter' deacti…
…vated -Fixed GUI on Venus OS V3.42. -Fixed inverterTotalEnergy on VRM
- Loading branch information
Showing
3 changed files
with
11 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
--- /opt/victronenergy/gui/qml/PageMain._qml | ||
+++ /opt/victronenergy/gui/qml/PageMain.qml | ||
@@ -64,6 +64,11 @@ | ||
} | ||
|
||
@@ -57,6 +57,11 @@ | ||
Component { | ||
+ id: vebusPageHm | ||
+ PageVebusHm {} | ||
id: vebusPage | ||
PageVebus {} | ||
+ } | ||
+ | ||
+ Component { | ||
id: multiRsPage | ||
PageMultiRs {} | ||
+ id: vebusPageHm | ||
+ PageVebusHm {} | ||
} | ||
@@ -146,7 +151,7 @@ | ||
switch(service.type) | ||
|
||
Component { | ||
@@ -146,5 +151,5 @@ | ||
{ | ||
case DBusService.DBUS_SERVICE_MULTI: | ||
- page = vebusPage | ||
+ page = service.name.indexOf("vebus.MicroPlus") > 0?vebusPageHm:vebusPage | ||
break; | ||
case DBusService.DBUS_SERVICE_MULTI_RS: | ||
page = multiRsPage |