-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.qml
69 lines (59 loc) · 1.28 KB
/
main.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import QtQuick
import QtQuick.Controls
import "QML/"
ApplicationWindow {
id: window
width: 410
height: 400
visible: true
title: "LYWSD02MMC"
onClosing: {
BLE_BRIDGE.disconnect_Device();
}
Rectangle {
id: background
color: "#f8f8f8"
anchors.fill: parent
focus: true
anchors.rightMargin: 0
anchors.bottomMargin: 0
anchors.leftMargin: 0
anchors.topMargin: 0
}
LYWSD02MMC {
id: lYWSD02MMC
width: 360
anchors.top: parent.top
anchors.topMargin: 20
anchors.horizontalCenter: parent.horizontalCenter
}
Clock_Control {
id: clock_Control
anchors.top: lYWSD02MMC.bottom
anchors.horizontalCenter: parent.horizontalCenter
anchors.topMargin: 20
}
Connection_Info {
id: connection_Info
anchors.top: clock_Control.bottom
anchors.topMargin: 20
anchors.horizontalCenter: parent.horizontalCenter
}
Devices_List {
id: devices_List
}
Connecting_To_Device {
id: connecting_To_Device
}
Writing_Service {
id: writing_Service
}
Time_Picker {
id: time_Picker
}
}
/*##^##
Designer {
D{i:0;formeditorZoom:1.33}
}
##^##*/