SensorsComponent.qml 663 Bytes
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
9

10
import QtQuick 2.3
11

12 13
import QGroundControl.Controls  1.0
import QGroundControl.PX4       1.0
Don Gagne's avatar
Don Gagne committed
14

15 16
SetupPage {
    pageComponent:  pageComponent
Don Gagne's avatar
Don Gagne committed
17
    Component {
18
        id: pageComponent
19 20 21 22
        SensorsSetup {
            width:      availableWidth
            height:     availableHeight
        }
23 24
    }
}