16 lines
201 B
QML
16 lines
201 B
QML
import QtQuick
|
|
import QtQuick.Window
|
|
import ESP32_upper 1.0
|
|
|
|
Window {
|
|
width: 1300
|
|
height: 750
|
|
visible: true
|
|
title: qsTr("Hello World")
|
|
|
|
HomePage {
|
|
id: id_home_page
|
|
|
|
}
|
|
}
|