├── .cmake.conf ├── .gitreview ├── .tag ├── CMakeLists.txt ├── LICENSES ├── Apache-2.0.txt ├── BSD-3-Clause.txt ├── GFDL-1.3-no-invariants-only.txt ├── GPL-2.0-only.txt ├── GPL-3.0-only.txt ├── LGPL-3.0-only.txt ├── LicenseRef-Qt-Commercial.txt └── Qt-GPL-exception-1.0.txt ├── REUSE.toml ├── cmake └── FindSensorfw.cmake ├── coin ├── axivion │ └── ci_config_linux.json └── module_config.yaml ├── config.tests └── winrt │ ├── CMakeLists.txt │ └── main.cpp ├── configure.cmake ├── configure.json ├── dependencies.yaml ├── dist ├── REUSE.toml ├── changes-5.1.0 ├── changes-5.1.1 ├── changes-5.10.0 ├── changes-5.10.1 ├── changes-5.11.0 ├── changes-5.11.1 ├── changes-5.11.2 ├── changes-5.11.3 ├── changes-5.12.0 ├── changes-5.12.1 ├── changes-5.12.2 ├── changes-5.12.3 ├── changes-5.12.4 ├── changes-5.12.5 ├── changes-5.13.0 ├── changes-5.13.1 ├── changes-5.13.2 ├── changes-5.14.0 ├── changes-5.14.1 ├── changes-5.14.2 ├── changes-5.15.0 ├── changes-5.15.1 ├── changes-5.2.0 ├── changes-5.3.0 ├── changes-5.3.1 ├── changes-5.3.2 ├── changes-5.4.0 ├── changes-5.4.1 ├── changes-5.4.2 ├── changes-5.5.0 ├── changes-5.5.1 ├── changes-5.6.0 ├── changes-5.6.1 ├── changes-5.6.2 ├── changes-5.6.3 ├── changes-5.7.0 ├── changes-5.7.1 ├── changes-5.8.0 ├── changes-5.9.0 ├── changes-5.9.1 ├── changes-5.9.2 ├── changes-5.9.3 ├── changes-5.9.4 ├── changes-5.9.5 └── changes-5.9.6 ├── doc └── src │ ├── sensors-dynamic.dia │ ├── sensors-overview.dia │ └── sensors-static.dia ├── examples ├── CMakeLists.txt ├── examples.pro └── sensors │ ├── CMakeLists.txt │ ├── sensors.pro │ └── sensorsshowcase │ ├── Accelerometer.qml │ ├── CMakeLists.txt │ ├── Compass.qml │ ├── Gyroscope.qml │ ├── Info.plist │ ├── Magnetometer.qml │ ├── Main.qml │ ├── ProgressXYZBar.qml │ ├── Proximity.qml │ ├── android │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable-hdpi │ │ └── icon.png │ │ ├── drawable-ldpi │ │ └── icon.png │ │ ├── drawable-mdpi │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ └── icon.png │ │ └── drawable-xxxhdpi │ │ └── icon.png │ ├── doc │ ├── images │ │ ├── sensorsshowcase-gyroscope.webp │ │ └── sensorsshowcase-mainview.webp │ └── src │ │ └── sensorsshowcase.qdoc │ ├── images │ ├── compass.svg │ ├── magnet.svg │ └── qt_logo.png │ ├── main.cpp │ ├── qmldir │ ├── qtquickcontrols2.conf │ ├── sensorsshowcase.pro │ └── sensorsupport.h ├── licenseRule.json ├── qt_cmdline.cmake ├── src ├── CMakeLists.txt ├── plugins │ ├── CMakeLists.txt │ └── sensors │ │ ├── CMakeLists.txt │ │ ├── android │ │ ├── CMakeLists.txt │ │ ├── androidaccelerometer.cpp │ │ ├── androidaccelerometer.h │ │ ├── androidcompass.cpp │ │ ├── androidcompass.h │ │ ├── androidgyroscope.cpp │ │ ├── androidgyroscope.h │ │ ├── androidlight.cpp │ │ ├── androidlight.h │ │ ├── androidmagnetometer.cpp │ │ ├── androidmagnetometer.h │ │ ├── androidpressure.cpp │ │ ├── androidpressure.h │ │ ├── androidproximity.cpp │ │ ├── androidproximity.h │ │ ├── androidrotation.cpp │ │ ├── androidrotation.h │ │ ├── androidtemperature.cpp │ │ ├── androidtemperature.h │ │ ├── main.cpp │ │ ├── plugin.json │ │ ├── qt_attribution.json │ │ ├── sensoreventqueue.h │ │ ├── sensormanager.cpp │ │ └── sensormanager.h │ │ ├── dummy │ │ ├── CMakeLists.txt │ │ ├── dummyaccelerometer.cpp │ │ ├── dummyaccelerometer.h │ │ ├── dummycommon.cpp │ │ ├── dummycommon.h │ │ ├── dummylightsensor.cpp │ │ ├── dummylightsensor.h │ │ ├── main.cpp │ │ └── plugin.json │ │ ├── generic │ │ ├── CMakeLists.txt │ │ ├── genericalssensor.cpp │ │ ├── genericalssensor.h │ │ ├── genericorientationsensor.cpp │ │ ├── genericorientationsensor.h │ │ ├── genericrotationsensor.cpp │ │ ├── genericrotationsensor.h │ │ ├── generictiltsensor.cpp │ │ ├── generictiltsensor.h │ │ ├── main.cpp │ │ └── plugin.json │ │ ├── iio-sensor-proxy │ │ ├── CMakeLists.txt │ │ ├── REUSE.toml │ │ ├── iiosensorproxycompass.cpp │ │ ├── iiosensorproxycompass.h │ │ ├── iiosensorproxylightsensor.cpp │ │ ├── iiosensorproxylightsensor.h │ │ ├── iiosensorproxyorientationsensor.cpp │ │ ├── iiosensorproxyorientationsensor.h │ │ ├── iiosensorproxyproximitysensor.cpp │ │ ├── iiosensorproxyproximitysensor.h │ │ ├── iiosensorproxysensorbase.cpp │ │ ├── iiosensorproxysensorbase.h │ │ ├── main.cpp │ │ ├── net.hadess.SensorProxy.Compass.xml │ │ ├── net.hadess.SensorProxy.xml │ │ ├── org.freedesktop.DBus.Properties.xml │ │ └── plugin.json │ │ ├── ios │ │ ├── CMakeLists.txt │ │ ├── iosaccelerometer.h │ │ ├── iosaccelerometer.mm │ │ ├── ioscompass.h │ │ ├── ioscompass.mm │ │ ├── iosgyroscope.h │ │ ├── iosgyroscope.mm │ │ ├── iosmagnetometer.h │ │ ├── iosmagnetometer.mm │ │ ├── iosmotionmanager.h │ │ ├── iosmotionmanager.mm │ │ ├── iospressure.h │ │ ├── iospressure.mm │ │ ├── iosproximitysensor.h │ │ ├── iosproximitysensor.mm │ │ ├── main.mm │ │ └── plugin.json │ │ ├── sensorfw │ │ ├── CMakeLists.txt │ │ ├── Sensors.conf │ │ ├── main.cpp │ │ ├── plugin.json │ │ ├── sensorfw.pri │ │ ├── sensorfwaccelerometer.cpp │ │ ├── sensorfwaccelerometer.h │ │ ├── sensorfwals.cpp │ │ ├── sensorfwals.h │ │ ├── sensorfwcompass.cpp │ │ ├── sensorfwcompass.h │ │ ├── sensorfwgyroscope.cpp │ │ ├── sensorfwgyroscope.h │ │ ├── sensorfwirproximitysensor.cpp │ │ ├── sensorfwirproximitysensor.h │ │ ├── sensorfwlidsensor.cpp │ │ ├── sensorfwlidsensor.h │ │ ├── sensorfwlightsensor.cpp │ │ ├── sensorfwlightsensor.h │ │ ├── sensorfwmagnetometer.cpp │ │ ├── sensorfwmagnetometer.h │ │ ├── sensorfworientationsensor.cpp │ │ ├── sensorfworientationsensor.h │ │ ├── sensorfwproximitysensor.cpp │ │ ├── sensorfwproximitysensor.h │ │ ├── sensorfwrotationsensor.cpp │ │ ├── sensorfwrotationsensor.h │ │ ├── sensorfwsensorbase.cpp │ │ ├── sensorfwsensorbase.h │ │ ├── sensorfwtapsensor.cpp │ │ └── sensorfwtapsensor.h │ │ └── winrt │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── plugin.json │ │ ├── winrtaccelerometer.cpp │ │ ├── winrtaccelerometer.h │ │ ├── winrtambientlightsensor.cpp │ │ ├── winrtambientlightsensor.h │ │ ├── winrtcommon.cpp │ │ ├── winrtcommon.h │ │ ├── winrtcompass.cpp │ │ ├── winrtcompass.h │ │ ├── winrtgyroscope.cpp │ │ ├── winrtgyroscope.h │ │ ├── winrtorientationsensor.cpp │ │ ├── winrtorientationsensor.h │ │ ├── winrtrotationsensor.cpp │ │ └── winrtrotationsensor.h ├── sensors │ ├── CMakeLists.txt │ ├── configure.cmake │ ├── configure.json │ ├── doc │ │ ├── images │ │ │ ├── XAngle.gif │ │ │ ├── XAngleNegative.gif │ │ │ ├── YAngle.gif │ │ │ ├── YAngleNegative.gif │ │ │ ├── cubehouse.png │ │ │ ├── maze.png │ │ │ ├── qmlqtsensors.png │ │ │ ├── sensors-coordinates.jpg │ │ │ ├── sensors-coordinates2.jpg │ │ │ ├── sensors-coordinates3.jpg │ │ │ ├── sensors-dynamic.png │ │ │ ├── sensors-geo-vs-raw-magnetism.jpg │ │ │ ├── sensors-orientation.jpg │ │ │ ├── sensors-overview.png │ │ │ ├── sensors-rotation-anim.gif │ │ │ ├── sensors-rotation.jpg │ │ │ ├── sensors-rotation2.jpg │ │ │ ├── sensors-rotation3.jpg │ │ │ ├── sensors-sides.jpg │ │ │ ├── sensors-sides2.jpg │ │ │ └── sensors-static.png │ │ ├── qtsensors-module-use.qdocinc │ │ ├── qtsensors.qdocconf │ │ ├── snippets │ │ │ └── sensors │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── creating.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── mybackend.h │ │ │ │ ├── myreading.cpp │ │ │ │ ├── plugin.cpp │ │ │ │ ├── start.cpp │ │ │ │ └── tutorial.cpp │ │ └── src │ │ │ ├── compatmap.qdoc │ │ │ ├── genericbackend.qdoc │ │ │ ├── qt6-changes.qdoc │ │ │ ├── qtsensors-backend.qdoc │ │ │ ├── qtsensors-cpp.qdoc │ │ │ ├── qtsensors-modules.qdoc │ │ │ ├── qtsensors-toc.qdoc │ │ │ ├── qtsensors-tutorial.qdoc │ │ │ ├── qtsensors.qdoc │ │ │ ├── sensor-examples.qdoc │ │ │ └── sensorfwbackend.qdoc │ ├── make_sensor.pl │ ├── qaccelerometer.cpp │ ├── qaccelerometer.h │ ├── qaccelerometer_p.h │ ├── qambientlightsensor.cpp │ ├── qambientlightsensor.h │ ├── qambientlightsensor_p.h │ ├── qambienttemperaturesensor.cpp │ ├── qambienttemperaturesensor.h │ ├── qambienttemperaturesensor_p.h │ ├── qcompass.cpp │ ├── qcompass.h │ ├── qcompass_p.h │ ├── qgyroscope.cpp │ ├── qgyroscope.h │ ├── qgyroscope_p.h │ ├── qhumiditysensor.cpp │ ├── qhumiditysensor.h │ ├── qhumiditysensor_p.h │ ├── qirproximitysensor.cpp │ ├── qirproximitysensor.h │ ├── qirproximitysensor_p.h │ ├── qlidsensor.cpp │ ├── qlidsensor.h │ ├── qlidsensor_p.h │ ├── qlightsensor.cpp │ ├── qlightsensor.h │ ├── qlightsensor_p.h │ ├── qmagnetometer.cpp │ ├── qmagnetometer.h │ ├── qmagnetometer_p.h │ ├── qorientationsensor.cpp │ ├── qorientationsensor.h │ ├── qorientationsensor_p.h │ ├── qpressuresensor.cpp │ ├── qpressuresensor.h │ ├── qpressuresensor_p.h │ ├── qproximitysensor.cpp │ ├── qproximitysensor.h │ ├── qproximitysensor_p.h │ ├── qrotationsensor.cpp │ ├── qrotationsensor.h │ ├── qrotationsensor_p.h │ ├── qsensor.cpp │ ├── qsensor.h │ ├── qsensor_p.h │ ├── qsensorbackend.cpp │ ├── qsensorbackend.h │ ├── qsensorbackend_p.h │ ├── qsensormanager.cpp │ ├── qsensormanager.h │ ├── qsensorplugin.cpp │ ├── qsensorplugin.h │ ├── qsensorsglobal.h │ ├── qt_cmdline.cmake │ ├── qtapsensor.cpp │ ├── qtapsensor.h │ ├── qtapsensor_p.h │ ├── qtiltsensor.cpp │ ├── qtiltsensor.h │ ├── qtiltsensor_p.h │ └── sensorlog_p.h └── sensorsquick │ ├── CMakeLists.txt │ ├── qmlaccelerometer.cpp │ ├── qmlaccelerometer_p.h │ ├── qmlambientlightsensor.cpp │ ├── qmlambientlightsensor_p.h │ ├── qmlambienttemperaturesensor.cpp │ ├── qmlambienttemperaturesensor_p.h │ ├── qmlcompass.cpp │ ├── qmlcompass_p.h │ ├── qmlgyroscope.cpp │ ├── qmlgyroscope_p.h │ ├── qmlhumiditysensor.cpp │ ├── qmlhumiditysensor_p.h │ ├── qmlirproximitysensor.cpp │ ├── qmlirproximitysensor_p.h │ ├── qmllidsensor.cpp │ ├── qmllidsensor_p.h │ ├── qmllightsensor.cpp │ ├── qmllightsensor_p.h │ ├── qmlmagnetometer.cpp │ ├── qmlmagnetometer_p.h │ ├── qmlorientationsensor.cpp │ ├── qmlorientationsensor_p.h │ ├── qmlpressuresensor.cpp │ ├── qmlpressuresensor_p.h │ ├── qmlproximitysensor.cpp │ ├── qmlproximitysensor_p.h │ ├── qmlrotationsensor.cpp │ ├── qmlrotationsensor_p.h │ ├── qmlsensor.cpp │ ├── qmlsensor_p.h │ ├── qmlsensorglobal.cpp │ ├── qmlsensorglobal_p.h │ ├── qmlsensorrange.cpp │ ├── qmlsensorrange_p.h │ ├── qmltapsensor.cpp │ ├── qmltapsensor_p.h │ ├── qmltiltsensor.cpp │ ├── qmltiltsensor_p.h │ └── qsensorsquickglobal_p.h └── tests ├── CMakeLists.txt ├── auto ├── CMakeLists.txt ├── bic │ └── data │ │ ├── QtSensors.5.1.0.linux-gcc-amd64.txt │ │ ├── QtSensors.5.10.0.linux-gcc-amd64.txt │ │ ├── QtSensors.5.11.0.linux-gcc-amd64.txt │ │ ├── QtSensors.5.12.0.linux-gcc-amd64.txt │ │ ├── QtSensors.5.13.0.linux-gcc-amd64.txt │ │ ├── QtSensors.5.14.0.linux-gcc-amd64.txt │ │ ├── QtSensors.5.2.0.linux-gcc-amd64.txt │ │ ├── QtSensors.5.3.0.linux-gcc-amd64.txt │ │ ├── QtSensors.5.4.0.linux-gcc-amd64.txt │ │ ├── QtSensors.5.6.0.linux-gcc-amd64.txt │ │ ├── QtSensors.5.7.0.linux-gcc-amd64.txt │ │ ├── QtSensors.5.8.0.linux-gcc-amd64.txt │ │ └── QtSensors.5.9.0.linux-gcc-amd64.txt ├── cmake │ └── CMakeLists.txt ├── common │ ├── test_backends.cpp │ └── test_backends.h ├── qml │ ├── CMakeLists.txt │ ├── qml_cpp │ │ ├── CMakeLists.txt │ │ └── tst_sensors_qmlcpp.cpp │ └── qml_quick │ │ ├── CMakeLists.txt │ │ ├── tst_sensors_basic.qml │ │ └── tst_sensors_qmlquick.cpp └── qsensor │ ├── CMakeLists.txt │ ├── test_sensor.cpp │ ├── test_sensor.h │ ├── test_sensor2.cpp │ ├── test_sensor2.h │ ├── test_sensor2_p.h │ ├── test_sensor2impl.cpp │ ├── test_sensor2impl.h │ ├── test_sensor_p.h │ ├── test_sensorimpl.cpp │ ├── test_sensorimpl.h │ ├── test_sensorplugin.cpp │ └── tst_qsensor.cpp ├── global └── global.cfg └── manual ├── CMakeLists.txt ├── sensor_explorer_qml ├── CMakeLists.txt ├── main.cpp ├── qml.qrc ├── sensor_explorer.qml ├── sensormodels.cpp └── sensormodels.h ├── sensor_explorer_widgets ├── CMakeLists.txt ├── explorer.cpp ├── explorer.h ├── explorer.ui └── main.cpp └── sensorclerk ├── CMakeLists.txt ├── collector.cpp ├── collector.h ├── main.cpp └── qml └── main.qml /.cmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/.cmake.conf -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/.gitreview -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | 2c63a25362c77989a2d3d1c4a20483d6874a47af 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/GFDL-1.3-no-invariants-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/LICENSES/GFDL-1.3-no-invariants-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Qt-Commercial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/LICENSES/LicenseRef-Qt-Commercial.txt -------------------------------------------------------------------------------- /LICENSES/Qt-GPL-exception-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/LICENSES/Qt-GPL-exception-1.0.txt -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/REUSE.toml -------------------------------------------------------------------------------- /cmake/FindSensorfw.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/cmake/FindSensorfw.cmake -------------------------------------------------------------------------------- /coin/axivion/ci_config_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/coin/axivion/ci_config_linux.json -------------------------------------------------------------------------------- /coin/module_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/coin/module_config.yaml -------------------------------------------------------------------------------- /config.tests/winrt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/config.tests/winrt/CMakeLists.txt -------------------------------------------------------------------------------- /config.tests/winrt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/config.tests/winrt/main.cpp -------------------------------------------------------------------------------- /configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/configure.cmake -------------------------------------------------------------------------------- /configure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/configure.json -------------------------------------------------------------------------------- /dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dependencies.yaml -------------------------------------------------------------------------------- /dist/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/REUSE.toml -------------------------------------------------------------------------------- /dist/changes-5.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.1.0 -------------------------------------------------------------------------------- /dist/changes-5.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.1.1 -------------------------------------------------------------------------------- /dist/changes-5.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.10.0 -------------------------------------------------------------------------------- /dist/changes-5.10.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.10.1 -------------------------------------------------------------------------------- /dist/changes-5.11.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.11.0 -------------------------------------------------------------------------------- /dist/changes-5.11.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.11.1 -------------------------------------------------------------------------------- /dist/changes-5.11.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.11.2 -------------------------------------------------------------------------------- /dist/changes-5.11.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.11.3 -------------------------------------------------------------------------------- /dist/changes-5.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.12.0 -------------------------------------------------------------------------------- /dist/changes-5.12.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.12.1 -------------------------------------------------------------------------------- /dist/changes-5.12.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.12.2 -------------------------------------------------------------------------------- /dist/changes-5.12.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.12.3 -------------------------------------------------------------------------------- /dist/changes-5.12.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.12.4 -------------------------------------------------------------------------------- /dist/changes-5.12.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.12.5 -------------------------------------------------------------------------------- /dist/changes-5.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.13.0 -------------------------------------------------------------------------------- /dist/changes-5.13.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.13.1 -------------------------------------------------------------------------------- /dist/changes-5.13.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.13.2 -------------------------------------------------------------------------------- /dist/changes-5.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.14.0 -------------------------------------------------------------------------------- /dist/changes-5.14.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.14.1 -------------------------------------------------------------------------------- /dist/changes-5.14.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.14.2 -------------------------------------------------------------------------------- /dist/changes-5.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.15.0 -------------------------------------------------------------------------------- /dist/changes-5.15.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.15.1 -------------------------------------------------------------------------------- /dist/changes-5.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.2.0 -------------------------------------------------------------------------------- /dist/changes-5.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.3.0 -------------------------------------------------------------------------------- /dist/changes-5.3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.3.1 -------------------------------------------------------------------------------- /dist/changes-5.3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.3.2 -------------------------------------------------------------------------------- /dist/changes-5.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.4.0 -------------------------------------------------------------------------------- /dist/changes-5.4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.4.1 -------------------------------------------------------------------------------- /dist/changes-5.4.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.4.2 -------------------------------------------------------------------------------- /dist/changes-5.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.5.0 -------------------------------------------------------------------------------- /dist/changes-5.5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.5.1 -------------------------------------------------------------------------------- /dist/changes-5.6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.6.0 -------------------------------------------------------------------------------- /dist/changes-5.6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.6.1 -------------------------------------------------------------------------------- /dist/changes-5.6.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.6.2 -------------------------------------------------------------------------------- /dist/changes-5.6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.6.3 -------------------------------------------------------------------------------- /dist/changes-5.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.7.0 -------------------------------------------------------------------------------- /dist/changes-5.7.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.7.1 -------------------------------------------------------------------------------- /dist/changes-5.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.8.0 -------------------------------------------------------------------------------- /dist/changes-5.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.9.0 -------------------------------------------------------------------------------- /dist/changes-5.9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.9.1 -------------------------------------------------------------------------------- /dist/changes-5.9.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.9.2 -------------------------------------------------------------------------------- /dist/changes-5.9.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.9.3 -------------------------------------------------------------------------------- /dist/changes-5.9.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.9.4 -------------------------------------------------------------------------------- /dist/changes-5.9.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.9.5 -------------------------------------------------------------------------------- /dist/changes-5.9.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/dist/changes-5.9.6 -------------------------------------------------------------------------------- /doc/src/sensors-dynamic.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/doc/src/sensors-dynamic.dia -------------------------------------------------------------------------------- /doc/src/sensors-overview.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/doc/src/sensors-overview.dia -------------------------------------------------------------------------------- /doc/src/sensors-static.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/doc/src/sensors-static.dia -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/examples.pro -------------------------------------------------------------------------------- /examples/sensors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/CMakeLists.txt -------------------------------------------------------------------------------- /examples/sensors/sensors.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensors.pro -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/Accelerometer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/Accelerometer.qml -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/CMakeLists.txt -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/Compass.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/Compass.qml -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/Gyroscope.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/Gyroscope.qml -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/Info.plist -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/Magnetometer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/Magnetometer.qml -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/Main.qml -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/ProgressXYZBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/ProgressXYZBar.qml -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/Proximity.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/Proximity.qml -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/android/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/android/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/android/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/android/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/android/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/android/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/android/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/doc/images/sensorsshowcase-gyroscope.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/doc/images/sensorsshowcase-gyroscope.webp -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/doc/images/sensorsshowcase-mainview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/doc/images/sensorsshowcase-mainview.webp -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/doc/src/sensorsshowcase.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/doc/src/sensorsshowcase.qdoc -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/images/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/images/compass.svg -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/images/magnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/images/magnet.svg -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/images/qt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/images/qt_logo.png -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/main.cpp -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/qmldir -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/qtquickcontrols2.conf -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/sensorsshowcase.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/sensorsshowcase.pro -------------------------------------------------------------------------------- /examples/sensors/sensorsshowcase/sensorsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/examples/sensors/sensorsshowcase/sensorsupport.h -------------------------------------------------------------------------------- /licenseRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/licenseRule.json -------------------------------------------------------------------------------- /qt_cmdline.cmake: -------------------------------------------------------------------------------- 1 | qt_commandline_subconfig(src/sensors) 2 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(sensors) 2 | -------------------------------------------------------------------------------- /src/plugins/sensors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/sensors/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidaccelerometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidaccelerometer.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidaccelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidaccelerometer.h -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidcompass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidcompass.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidcompass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidcompass.h -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidgyroscope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidgyroscope.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidgyroscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidgyroscope.h -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidlight.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidlight.h -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidmagnetometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidmagnetometer.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidmagnetometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidmagnetometer.h -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidpressure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidpressure.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidpressure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidpressure.h -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidproximity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidproximity.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidproximity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidproximity.h -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidrotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidrotation.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidrotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidrotation.h -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidtemperature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidtemperature.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/android/androidtemperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/androidtemperature.h -------------------------------------------------------------------------------- /src/plugins/sensors/android/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/main.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/android/plugin.json: -------------------------------------------------------------------------------- 1 | { "Keys": [ "android" ] } 2 | -------------------------------------------------------------------------------- /src/plugins/sensors/android/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/qt_attribution.json -------------------------------------------------------------------------------- /src/plugins/sensors/android/sensoreventqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/sensoreventqueue.h -------------------------------------------------------------------------------- /src/plugins/sensors/android/sensormanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/sensormanager.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/android/sensormanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/android/sensormanager.h -------------------------------------------------------------------------------- /src/plugins/sensors/dummy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/dummy/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/sensors/dummy/dummyaccelerometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/dummy/dummyaccelerometer.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/dummy/dummyaccelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/dummy/dummyaccelerometer.h -------------------------------------------------------------------------------- /src/plugins/sensors/dummy/dummycommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/dummy/dummycommon.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/dummy/dummycommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/dummy/dummycommon.h -------------------------------------------------------------------------------- /src/plugins/sensors/dummy/dummylightsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/dummy/dummylightsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/dummy/dummylightsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/dummy/dummylightsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/dummy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/dummy/main.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/dummy/plugin.json: -------------------------------------------------------------------------------- 1 | { "Keys": [ "dummy" ] } 2 | -------------------------------------------------------------------------------- /src/plugins/sensors/generic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/generic/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/sensors/generic/genericalssensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/generic/genericalssensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/generic/genericalssensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/generic/genericalssensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/generic/genericorientationsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/generic/genericorientationsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/generic/genericorientationsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/generic/genericorientationsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/generic/genericrotationsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/generic/genericrotationsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/generic/genericrotationsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/generic/genericrotationsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/generic/generictiltsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/generic/generictiltsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/generic/generictiltsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/generic/generictiltsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/generic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/generic/main.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/generic/plugin.json: -------------------------------------------------------------------------------- 1 | { "Keys": [ "generic" ] } 2 | -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/REUSE.toml -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/iiosensorproxycompass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/iiosensorproxycompass.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/iiosensorproxycompass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/iiosensorproxycompass.h -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/iiosensorproxylightsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/iiosensorproxylightsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/iiosensorproxylightsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/iiosensorproxylightsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/iiosensorproxyorientationsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/iiosensorproxyorientationsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/iiosensorproxyorientationsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/iiosensorproxyorientationsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/iiosensorproxyproximitysensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/iiosensorproxyproximitysensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/iiosensorproxyproximitysensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/iiosensorproxyproximitysensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/iiosensorproxysensorbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/iiosensorproxysensorbase.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/iiosensorproxysensorbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/iiosensorproxysensorbase.h -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/main.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/net.hadess.SensorProxy.Compass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/net.hadess.SensorProxy.Compass.xml -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/net.hadess.SensorProxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/net.hadess.SensorProxy.xml -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/org.freedesktop.DBus.Properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/iio-sensor-proxy/org.freedesktop.DBus.Properties.xml -------------------------------------------------------------------------------- /src/plugins/sensors/iio-sensor-proxy/plugin.json: -------------------------------------------------------------------------------- 1 | { "Keys": [ "iio-sensor-proxy" ] } 2 | -------------------------------------------------------------------------------- /src/plugins/sensors/ios/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iosaccelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iosaccelerometer.h -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iosaccelerometer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iosaccelerometer.mm -------------------------------------------------------------------------------- /src/plugins/sensors/ios/ioscompass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/ioscompass.h -------------------------------------------------------------------------------- /src/plugins/sensors/ios/ioscompass.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/ioscompass.mm -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iosgyroscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iosgyroscope.h -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iosgyroscope.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iosgyroscope.mm -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iosmagnetometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iosmagnetometer.h -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iosmagnetometer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iosmagnetometer.mm -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iosmotionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iosmotionmanager.h -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iosmotionmanager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iosmotionmanager.mm -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iospressure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iospressure.h -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iospressure.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iospressure.mm -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iosproximitysensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iosproximitysensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/ios/iosproximitysensor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/iosproximitysensor.mm -------------------------------------------------------------------------------- /src/plugins/sensors/ios/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/ios/main.mm -------------------------------------------------------------------------------- /src/plugins/sensors/ios/plugin.json: -------------------------------------------------------------------------------- 1 | { "Keys": [ "ios" ] } 2 | -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/Sensors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/Sensors.conf -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/main.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/plugin.json: -------------------------------------------------------------------------------- 1 | { "Keys": [ "sensorfw" ] } 2 | -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfw.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfw.pri -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwaccelerometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwaccelerometer.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwaccelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwaccelerometer.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwals.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwals.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwcompass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwcompass.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwcompass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwcompass.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwgyroscope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwgyroscope.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwgyroscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwgyroscope.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwirproximitysensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwirproximitysensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwirproximitysensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwirproximitysensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwlidsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwlidsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwlidsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwlidsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwlightsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwlightsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwlightsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwlightsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwmagnetometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwmagnetometer.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwmagnetometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwmagnetometer.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfworientationsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfworientationsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfworientationsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfworientationsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwproximitysensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwproximitysensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwproximitysensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwproximitysensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwrotationsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwrotationsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwrotationsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwrotationsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwsensorbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwsensorbase.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwsensorbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwsensorbase.h -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwtapsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwtapsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/sensorfw/sensorfwtapsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/sensorfw/sensorfwtapsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/main.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/plugin.json: -------------------------------------------------------------------------------- 1 | { "Keys": [ "winrt" ] } 2 | -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtaccelerometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtaccelerometer.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtaccelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtaccelerometer.h -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtambientlightsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtambientlightsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtambientlightsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtambientlightsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtcommon.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtcommon.h -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtcompass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtcompass.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtcompass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtcompass.h -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtgyroscope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtgyroscope.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtgyroscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtgyroscope.h -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtorientationsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtorientationsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtorientationsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtorientationsensor.h -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtrotationsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtrotationsensor.cpp -------------------------------------------------------------------------------- /src/plugins/sensors/winrt/winrtrotationsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/plugins/sensors/winrt/winrtrotationsensor.h -------------------------------------------------------------------------------- /src/sensors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/CMakeLists.txt -------------------------------------------------------------------------------- /src/sensors/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/configure.cmake -------------------------------------------------------------------------------- /src/sensors/configure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/configure.json -------------------------------------------------------------------------------- /src/sensors/doc/images/XAngle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/XAngle.gif -------------------------------------------------------------------------------- /src/sensors/doc/images/XAngleNegative.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/XAngleNegative.gif -------------------------------------------------------------------------------- /src/sensors/doc/images/YAngle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/YAngle.gif -------------------------------------------------------------------------------- /src/sensors/doc/images/YAngleNegative.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/YAngleNegative.gif -------------------------------------------------------------------------------- /src/sensors/doc/images/cubehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/cubehouse.png -------------------------------------------------------------------------------- /src/sensors/doc/images/maze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/maze.png -------------------------------------------------------------------------------- /src/sensors/doc/images/qmlqtsensors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/qmlqtsensors.png -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-coordinates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-coordinates.jpg -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-coordinates2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-coordinates2.jpg -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-coordinates3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-coordinates3.jpg -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-dynamic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-dynamic.png -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-geo-vs-raw-magnetism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-geo-vs-raw-magnetism.jpg -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-orientation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-orientation.jpg -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-overview.png -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-rotation-anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-rotation-anim.gif -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-rotation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-rotation.jpg -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-rotation2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-rotation2.jpg -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-rotation3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-rotation3.jpg -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-sides.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-sides.jpg -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-sides2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-sides2.jpg -------------------------------------------------------------------------------- /src/sensors/doc/images/sensors-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/images/sensors-static.png -------------------------------------------------------------------------------- /src/sensors/doc/qtsensors-module-use.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/qtsensors-module-use.qdocinc -------------------------------------------------------------------------------- /src/sensors/doc/qtsensors.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/qtsensors.qdocconf -------------------------------------------------------------------------------- /src/sensors/doc/snippets/sensors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/snippets/sensors/CMakeLists.txt -------------------------------------------------------------------------------- /src/sensors/doc/snippets/sensors/creating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/snippets/sensors/creating.cpp -------------------------------------------------------------------------------- /src/sensors/doc/snippets/sensors/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/snippets/sensors/main.cpp -------------------------------------------------------------------------------- /src/sensors/doc/snippets/sensors/mybackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/snippets/sensors/mybackend.h -------------------------------------------------------------------------------- /src/sensors/doc/snippets/sensors/myreading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/snippets/sensors/myreading.cpp -------------------------------------------------------------------------------- /src/sensors/doc/snippets/sensors/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/snippets/sensors/plugin.cpp -------------------------------------------------------------------------------- /src/sensors/doc/snippets/sensors/start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/snippets/sensors/start.cpp -------------------------------------------------------------------------------- /src/sensors/doc/snippets/sensors/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/snippets/sensors/tutorial.cpp -------------------------------------------------------------------------------- /src/sensors/doc/src/compatmap.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/src/compatmap.qdoc -------------------------------------------------------------------------------- /src/sensors/doc/src/genericbackend.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/src/genericbackend.qdoc -------------------------------------------------------------------------------- /src/sensors/doc/src/qt6-changes.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/src/qt6-changes.qdoc -------------------------------------------------------------------------------- /src/sensors/doc/src/qtsensors-backend.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/src/qtsensors-backend.qdoc -------------------------------------------------------------------------------- /src/sensors/doc/src/qtsensors-cpp.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/src/qtsensors-cpp.qdoc -------------------------------------------------------------------------------- /src/sensors/doc/src/qtsensors-modules.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/src/qtsensors-modules.qdoc -------------------------------------------------------------------------------- /src/sensors/doc/src/qtsensors-toc.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/src/qtsensors-toc.qdoc -------------------------------------------------------------------------------- /src/sensors/doc/src/qtsensors-tutorial.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/src/qtsensors-tutorial.qdoc -------------------------------------------------------------------------------- /src/sensors/doc/src/qtsensors.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/src/qtsensors.qdoc -------------------------------------------------------------------------------- /src/sensors/doc/src/sensor-examples.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/src/sensor-examples.qdoc -------------------------------------------------------------------------------- /src/sensors/doc/src/sensorfwbackend.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/doc/src/sensorfwbackend.qdoc -------------------------------------------------------------------------------- /src/sensors/make_sensor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/make_sensor.pl -------------------------------------------------------------------------------- /src/sensors/qaccelerometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qaccelerometer.cpp -------------------------------------------------------------------------------- /src/sensors/qaccelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qaccelerometer.h -------------------------------------------------------------------------------- /src/sensors/qaccelerometer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qaccelerometer_p.h -------------------------------------------------------------------------------- /src/sensors/qambientlightsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qambientlightsensor.cpp -------------------------------------------------------------------------------- /src/sensors/qambientlightsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qambientlightsensor.h -------------------------------------------------------------------------------- /src/sensors/qambientlightsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qambientlightsensor_p.h -------------------------------------------------------------------------------- /src/sensors/qambienttemperaturesensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qambienttemperaturesensor.cpp -------------------------------------------------------------------------------- /src/sensors/qambienttemperaturesensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qambienttemperaturesensor.h -------------------------------------------------------------------------------- /src/sensors/qambienttemperaturesensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qambienttemperaturesensor_p.h -------------------------------------------------------------------------------- /src/sensors/qcompass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qcompass.cpp -------------------------------------------------------------------------------- /src/sensors/qcompass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qcompass.h -------------------------------------------------------------------------------- /src/sensors/qcompass_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qcompass_p.h -------------------------------------------------------------------------------- /src/sensors/qgyroscope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qgyroscope.cpp -------------------------------------------------------------------------------- /src/sensors/qgyroscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qgyroscope.h -------------------------------------------------------------------------------- /src/sensors/qgyroscope_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qgyroscope_p.h -------------------------------------------------------------------------------- /src/sensors/qhumiditysensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qhumiditysensor.cpp -------------------------------------------------------------------------------- /src/sensors/qhumiditysensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qhumiditysensor.h -------------------------------------------------------------------------------- /src/sensors/qhumiditysensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qhumiditysensor_p.h -------------------------------------------------------------------------------- /src/sensors/qirproximitysensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qirproximitysensor.cpp -------------------------------------------------------------------------------- /src/sensors/qirproximitysensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qirproximitysensor.h -------------------------------------------------------------------------------- /src/sensors/qirproximitysensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qirproximitysensor_p.h -------------------------------------------------------------------------------- /src/sensors/qlidsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qlidsensor.cpp -------------------------------------------------------------------------------- /src/sensors/qlidsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qlidsensor.h -------------------------------------------------------------------------------- /src/sensors/qlidsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qlidsensor_p.h -------------------------------------------------------------------------------- /src/sensors/qlightsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qlightsensor.cpp -------------------------------------------------------------------------------- /src/sensors/qlightsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qlightsensor.h -------------------------------------------------------------------------------- /src/sensors/qlightsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qlightsensor_p.h -------------------------------------------------------------------------------- /src/sensors/qmagnetometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qmagnetometer.cpp -------------------------------------------------------------------------------- /src/sensors/qmagnetometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qmagnetometer.h -------------------------------------------------------------------------------- /src/sensors/qmagnetometer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qmagnetometer_p.h -------------------------------------------------------------------------------- /src/sensors/qorientationsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qorientationsensor.cpp -------------------------------------------------------------------------------- /src/sensors/qorientationsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qorientationsensor.h -------------------------------------------------------------------------------- /src/sensors/qorientationsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qorientationsensor_p.h -------------------------------------------------------------------------------- /src/sensors/qpressuresensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qpressuresensor.cpp -------------------------------------------------------------------------------- /src/sensors/qpressuresensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qpressuresensor.h -------------------------------------------------------------------------------- /src/sensors/qpressuresensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qpressuresensor_p.h -------------------------------------------------------------------------------- /src/sensors/qproximitysensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qproximitysensor.cpp -------------------------------------------------------------------------------- /src/sensors/qproximitysensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qproximitysensor.h -------------------------------------------------------------------------------- /src/sensors/qproximitysensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qproximitysensor_p.h -------------------------------------------------------------------------------- /src/sensors/qrotationsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qrotationsensor.cpp -------------------------------------------------------------------------------- /src/sensors/qrotationsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qrotationsensor.h -------------------------------------------------------------------------------- /src/sensors/qrotationsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qrotationsensor_p.h -------------------------------------------------------------------------------- /src/sensors/qsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qsensor.cpp -------------------------------------------------------------------------------- /src/sensors/qsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qsensor.h -------------------------------------------------------------------------------- /src/sensors/qsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qsensor_p.h -------------------------------------------------------------------------------- /src/sensors/qsensorbackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qsensorbackend.cpp -------------------------------------------------------------------------------- /src/sensors/qsensorbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qsensorbackend.h -------------------------------------------------------------------------------- /src/sensors/qsensorbackend_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qsensorbackend_p.h -------------------------------------------------------------------------------- /src/sensors/qsensormanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qsensormanager.cpp -------------------------------------------------------------------------------- /src/sensors/qsensormanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qsensormanager.h -------------------------------------------------------------------------------- /src/sensors/qsensorplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qsensorplugin.cpp -------------------------------------------------------------------------------- /src/sensors/qsensorplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qsensorplugin.h -------------------------------------------------------------------------------- /src/sensors/qsensorsglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qsensorsglobal.h -------------------------------------------------------------------------------- /src/sensors/qt_cmdline.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sensors/qtapsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qtapsensor.cpp -------------------------------------------------------------------------------- /src/sensors/qtapsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qtapsensor.h -------------------------------------------------------------------------------- /src/sensors/qtapsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qtapsensor_p.h -------------------------------------------------------------------------------- /src/sensors/qtiltsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qtiltsensor.cpp -------------------------------------------------------------------------------- /src/sensors/qtiltsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qtiltsensor.h -------------------------------------------------------------------------------- /src/sensors/qtiltsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/qtiltsensor_p.h -------------------------------------------------------------------------------- /src/sensors/sensorlog_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensors/sensorlog_p.h -------------------------------------------------------------------------------- /src/sensorsquick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/CMakeLists.txt -------------------------------------------------------------------------------- /src/sensorsquick/qmlaccelerometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlaccelerometer.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlaccelerometer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlaccelerometer_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlambientlightsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlambientlightsensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlambientlightsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlambientlightsensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlambienttemperaturesensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlambienttemperaturesensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlambienttemperaturesensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlambienttemperaturesensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlcompass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlcompass.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlcompass_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlcompass_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlgyroscope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlgyroscope.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlgyroscope_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlgyroscope_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlhumiditysensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlhumiditysensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlhumiditysensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlhumiditysensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlirproximitysensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlirproximitysensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlirproximitysensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlirproximitysensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmllidsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmllidsensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmllidsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmllidsensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmllightsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmllightsensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmllightsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmllightsensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlmagnetometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlmagnetometer.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlmagnetometer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlmagnetometer_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlorientationsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlorientationsensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlorientationsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlorientationsensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlpressuresensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlpressuresensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlpressuresensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlpressuresensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlproximitysensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlproximitysensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlproximitysensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlproximitysensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlrotationsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlrotationsensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlrotationsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlrotationsensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlsensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlsensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlsensorglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlsensorglobal.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlsensorglobal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlsensorglobal_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmlsensorrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlsensorrange.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmlsensorrange_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmlsensorrange_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmltapsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmltapsensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmltapsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmltapsensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qmltiltsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmltiltsensor.cpp -------------------------------------------------------------------------------- /src/sensorsquick/qmltiltsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qmltiltsensor_p.h -------------------------------------------------------------------------------- /src/sensorsquick/qsensorsquickglobal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/src/sensorsquick/qsensorsquickglobal_p.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.1.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.1.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.10.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.10.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.11.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.11.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.12.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.12.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.13.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.13.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.14.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.14.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.2.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.2.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.3.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.3.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.4.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.4.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.6.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.6.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.7.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.7.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.8.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.8.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSensors.5.9.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/bic/data/QtSensors.5.9.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/common/test_backends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/common/test_backends.cpp -------------------------------------------------------------------------------- /tests/auto/common/test_backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/common/test_backends.h -------------------------------------------------------------------------------- /tests/auto/qml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qml/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qml/qml_cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qml/qml_cpp/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qml/qml_cpp/tst_sensors_qmlcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qml/qml_cpp/tst_sensors_qmlcpp.cpp -------------------------------------------------------------------------------- /tests/auto/qml/qml_quick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qml/qml_quick/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qml/qml_quick/tst_sensors_basic.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qml/qml_quick/tst_sensors_basic.qml -------------------------------------------------------------------------------- /tests/auto/qml/qml_quick/tst_sensors_qmlquick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qml/qml_quick/tst_sensors_qmlquick.cpp -------------------------------------------------------------------------------- /tests/auto/qsensor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qsensor/test_sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/test_sensor.cpp -------------------------------------------------------------------------------- /tests/auto/qsensor/test_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/test_sensor.h -------------------------------------------------------------------------------- /tests/auto/qsensor/test_sensor2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/test_sensor2.cpp -------------------------------------------------------------------------------- /tests/auto/qsensor/test_sensor2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/test_sensor2.h -------------------------------------------------------------------------------- /tests/auto/qsensor/test_sensor2_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/test_sensor2_p.h -------------------------------------------------------------------------------- /tests/auto/qsensor/test_sensor2impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/test_sensor2impl.cpp -------------------------------------------------------------------------------- /tests/auto/qsensor/test_sensor2impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/test_sensor2impl.h -------------------------------------------------------------------------------- /tests/auto/qsensor/test_sensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/test_sensor_p.h -------------------------------------------------------------------------------- /tests/auto/qsensor/test_sensorimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/test_sensorimpl.cpp -------------------------------------------------------------------------------- /tests/auto/qsensor/test_sensorimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/test_sensorimpl.h -------------------------------------------------------------------------------- /tests/auto/qsensor/test_sensorplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/test_sensorplugin.cpp -------------------------------------------------------------------------------- /tests/auto/qsensor/tst_qsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/auto/qsensor/tst_qsensor.cpp -------------------------------------------------------------------------------- /tests/global/global.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/global/global.cfg -------------------------------------------------------------------------------- /tests/manual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/sensor_explorer_qml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensor_explorer_qml/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/sensor_explorer_qml/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensor_explorer_qml/main.cpp -------------------------------------------------------------------------------- /tests/manual/sensor_explorer_qml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensor_explorer_qml/qml.qrc -------------------------------------------------------------------------------- /tests/manual/sensor_explorer_qml/sensor_explorer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensor_explorer_qml/sensor_explorer.qml -------------------------------------------------------------------------------- /tests/manual/sensor_explorer_qml/sensormodels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensor_explorer_qml/sensormodels.cpp -------------------------------------------------------------------------------- /tests/manual/sensor_explorer_qml/sensormodels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensor_explorer_qml/sensormodels.h -------------------------------------------------------------------------------- /tests/manual/sensor_explorer_widgets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensor_explorer_widgets/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/sensor_explorer_widgets/explorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensor_explorer_widgets/explorer.cpp -------------------------------------------------------------------------------- /tests/manual/sensor_explorer_widgets/explorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensor_explorer_widgets/explorer.h -------------------------------------------------------------------------------- /tests/manual/sensor_explorer_widgets/explorer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensor_explorer_widgets/explorer.ui -------------------------------------------------------------------------------- /tests/manual/sensor_explorer_widgets/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensor_explorer_widgets/main.cpp -------------------------------------------------------------------------------- /tests/manual/sensorclerk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensorclerk/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/sensorclerk/collector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensorclerk/collector.cpp -------------------------------------------------------------------------------- /tests/manual/sensorclerk/collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensorclerk/collector.h -------------------------------------------------------------------------------- /tests/manual/sensorclerk/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensorclerk/main.cpp -------------------------------------------------------------------------------- /tests/manual/sensorclerk/qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtsensors/HEAD/tests/manual/sensorclerk/qml/main.qml --------------------------------------------------------------------------------