From 437a043ce1a9f328b6906ebdef956d6838df7961 Mon Sep 17 00:00:00 2001 From: Florent Revest Date: Tue, 24 Oct 2017 15:36:22 +0200 Subject: Initial commit. Based on the initial work of https://github.com/nielstholenaar/asteroid-compass --- main.qml | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 main.qml (limited to 'main.qml') diff --git a/main.qml b/main.qml new file mode 100644 index 0000000..055572e --- /dev/null +++ b/main.qml @@ -0,0 +1,59 @@ +/* + * Copyright (C) 2017 - Florent Revest + * - Niels Tholenaar + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +import QtQuick 2.5 +import org.asteroid.controls 1.0 +import QtSensors 5.3 + +Application { + id: app + + centerColor: "#4cd479" + outerColor: "#1c723a" + + property int rotation: 0; + property int calibration: 0; + + Compass { + active: true + onReadingChanged: { + rotation = reading.azimuth; + calibration = reading.calibrationLevel; + } + } + + Image { + anchors.fill: parent + anchors.margins: Dims.l(15) + fillMode: Image.PreserveAspectFit + source: "qrc:///compass.svg" + rotation: -rotation + height: 200; + sourceSize.width: width + sourceSize.height: height + } + + Text { + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: parent.bottom + anchors.bottomMargin: Dims.l(7) + color: "white" + font.pixelSize: Dims.l(5) + text: rotation + " °N Calibrated: " + calibration + } +} -- cgit v1.2.3-54-g00ecf