Skip to content

Commit

Permalink
lll
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMcInnes committed Oct 26, 2023
1 parent 478dae7 commit f01190b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
5 changes: 1 addition & 4 deletions components/widgets/VeBusDeviceWidget.qml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,7 @@ OverviewWidget {
]
MouseArea {
anchors.fill: parent
onClicked: {
console.log("onClicked")
Global.pageManager.pushPage("/pages/vebusdevice/VeBusDevicePage.qml",
onClicked: Global.pageManager.pushPage("/pages/vebusdevice/VeBusDevicePage.qml",
{ "veBusDevice": Global.veBusDevices.model.firstObject })
}
}
}
7 changes: 4 additions & 3 deletions data/common/AcInputServiceLoader.qml
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,10 @@ Loader {
readonly property VeQuickItem _frequency: VeQuickItem {
uid: !!phase.phasePath ? phase.phasePath + "/F" : ""
onValueChanged: {
console.log(uid, value)
console.log("AcInputServiceLoader: vebusOrMultiComponent:", uid, value)
root._updateValue(acInputs, model.index, "frequency", value)
}
Component.onCompleted: console.log("AcInputServiceLoader: vebusOrMultiComponent: onCompleted:", uid, value)

}
readonly property VeQuickItem _current: VeQuickItem {
Expand Down Expand Up @@ -194,10 +195,10 @@ Loader {
readonly property VeQuickItem _frequency: VeQuickItem {
uid: phase.phasePath + "/Frequency"
onValueChanged: {
console.log("AcInputServiceLoader:", uid, value)
console.log("AcInputServiceLoader: gridOrGensetComponent:", uid, value)
root._updateValue(acInputs, model.index, "frequency", value)
}
Component.onCompleted: console.log("AcInputServiceLoader: onCompleted:", uid, value)
Component.onCompleted: console.log("AcInputServiceLoader: gridOrGensetComponent: onCompleted:", uid, value)
}
readonly property VeQuickItem _current: VeQuickItem {
uid: phase.phasePath + "/Current"
Expand Down
2 changes: 1 addition & 1 deletion data/common/AcOutput.qml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ QtObject {
readonly property AcOutputPhase phase3: AcOutputPhase {
serviceUid: root.serviceUid + "/Ac/Out/L3"
}
readonly property bool is3Phase: phase1.valid && phase2.valid &&phase3.valid
readonly property bool is3Phase: phase1.valid && phase2.valid && phase3.valid
}

0 comments on commit f01190b

Please sign in to comment.