summaryrefslogtreecommitdiffstats
path: root/examples/sensors/sensorsshowcase/gyroscope.qml
blob: 39252c0e4e8dc359d62d8c61512a232998d212ed (plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtSensors

Rectangle {
    id: root
    color: "dimgray"

    function resetRotations() {
        imageXRotation.angle = 0
        imageYRotation.angle = 0
        imageZRotation.angle = 0
    }

//! [0]
    Gyroscope {
        id: gyroscope
        active: true
        dataRate: 25

        property variant lastTimeStamp: 0

        property real x: 0
        property real y: 0
        property real z: 0

        onReadingChanged: {

            x = reading.x
            y = reading.y
            z = reading.z

            var firstCall = false
            if (lastTimeStamp == 0) {
                firstCall = true
            }

            var timeSinceLast = reading.timestamp - lastTimeStamp
            lastTimeStamp = reading.timestamp

            //Skipping the initial time jump from 0
            if (firstCall === true) return

            var normalizedX = reading.x * (timeSinceLast/1000000)
            imageXRotation.angle += normalizedX

            var normalizedY = reading.y * (timeSinceLast/1000000)
            imageYRotation.angle -= normalizedY

            var normalizedZ = reading.z * (timeSinceLast/1000000)
            imageZRotation.angle += normalizedZ
        }
    }
//! [0]

    ColumnLayout {
        anchors.fill: parent
        id: layout

        Text {
            Layout.topMargin: titleTopMargin
            Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
            Layout.preferredHeight: textHeight
            color: "White"
            text: "Gyroscope"
            font.pixelSize: titleFontSize
        }

        Image {
            id: image
            Layout.alignment: Qt.AlignCenter
            Layout.fillHeight: true
            Layout.preferredWidth: root.height/3
            Layout.preferredHeight: root.height/3
            source: "qrc:/images/qt_logo.png"
            fillMode: Image.PreserveAspectFit

            transform: [
                Rotation {
                    id: imageXRotation
                    origin.x: layout.width/2
                    origin.y: layout.height/3
                    axis.x: 1
                    axis.y: 0
                    axis.z: 0
                    angle: 0
                },
                Rotation {
                    id: imageYRotation
                    origin.x: layout.width/2
                    origin.y: layout.height/3
                    axis.x: 0
                    axis.y: 1
                    axis.z: 0
                    angle: 0
                },
                Rotation {
                    id: imageZRotation
                    origin.x: layout.width/2
                    origin.y: layout.height/3
                    axis.x: 0
                    axis.y: 0
                    axis.z: 1
                    angle: 0
                }
            ]
        }

        Text {
            Layout.preferredWidth: root.width
            Layout.preferredHeight: textHeight
            Layout.leftMargin: layout.spacing
            color: "White"
            text: "X: " + gyroscope.x.toFixed(2)
            font.pixelSize: textFontSize
        }

        ProgressBar {
            id: xbar
            value: 0.5 + (gyroscope.x / 1000)
            Layout.preferredWidth: root.width
        }

        Text {
            Layout.preferredWidth: root.width
            Layout.preferredHeight: textHeight
            Layout.leftMargin: layout.spacing
            color: "White"
            text: "Y: " + gyroscope.y.toFixed(2)
            font.pixelSize: textFontSize
        }
        ProgressBar {
            id: ybar
            value: 0.5 + (gyroscope.y / 1000)
            Layout.preferredWidth: root.width
        }
        Text {
            Layout.preferredWidth: root.width
            Layout.preferredHeight: textHeight
            Layout.leftMargin: layout.spacing
            color: "White"
            text: "Z: " + gyroscope.z.toFixed(2)
            font.pixelSize: textFontSize
        }
        ProgressBar {
            id: zbar
            value: 0.5 + (gyroscope.z / 1000)
            Layout.preferredWidth: root.width
        }
        Button {
            Layout.alignment: Qt.AlignBottom
            Layout.preferredWidth: root.width
            Layout.preferredHeight: buttonHeight
            text:"Reset rotation"
            font.pixelSize: buttonFontSize
            onClicked: {
                resetRotations()
            }
        }
        Button {
            Layout.alignment: Qt.AlignBottom
            Layout.preferredWidth: root.width
            Layout.preferredHeight: buttonHeight
            text:"Back"
            font.pixelSize: buttonFontSize
            onClicked:stack.pop()
        }
    }
}