SensorsComponent.qml 759 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 17
SetupPage {
    id:             sensorsPage
    pageComponent:  pageComponent
18

Don Gagne's avatar
Don Gagne committed
19
    Component {
20 21
        id: pageComponent

22 23 24 25 26
        SensorsSetup {
            width:      availableWidth
            height:     availableHeight
            qgcView:    sensorsPage
        }
27 28
    } // Component
} // SetupPage