39 lines
519 B
QML
39 lines
519 B
QML
|
import QtQuick 1.1
|
||
|
import com.victron.velib 1.0
|
||
|
import "utils.js" as Utils
|
||
|
|
||
|
MbPage
|
||
|
{
|
||
|
id: root
|
||
|
title: "InnovEnergy"
|
||
|
|
||
|
model: VisualItemModel
|
||
|
{
|
||
|
|
||
|
MbSubMenu
|
||
|
{
|
||
|
id: pageChargingStrategy
|
||
|
description: qsTr("Charging Strategy")
|
||
|
subpage: Component
|
||
|
{
|
||
|
PageChargingStrategy
|
||
|
{
|
||
|
title: pageChargingStrategy.description
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
MbSubMenu
|
||
|
{
|
||
|
id: pageRelay1
|
||
|
description: qsTr("Relay 2")
|
||
|
subpage: Component
|
||
|
{
|
||
|
PageRelay1
|
||
|
{
|
||
|
title: pageRelay1.description
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|