C Qt Quick Ultralite Thermostat Demo // Copyright (C) 2024 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial pragma Singleton import QtQuick 2.15 QtObject { readonly property string temperatureSymbol: "°C" function fahrenheitToTemperatureUnit(fahrenheit : int) : int { return (fahrenheit - 32) * 5 / 9 } }