aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/wearable/qml/Fitness/fitness.js
blob: 95ce06cdc1a8e44c03ffb1a143248b9be999db1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

function getSteps() {
    return 105;
}

function getCalories() {
    return 150;
}

function getDistance() {
    return 10;
}

function getTime() {
    return "00:30";
}