SDAA259 January   2026 AM623 , AM625 , AM625-Q1 , AM625SIP , AM62P , AM62P-Q1

 

  1.   1
  2.   Abstract
  3.   Trademarks
  4. 1Introduction
  5. 2Detailed Description
    1. 2.1 Launching Qt Creator
    2. 2.2 Running The First Project on PC
    3. 2.3 Creating a Button
      1. 2.3.1 Modifying the Property of a Button
    4. 2.4 Creating a C++ Back-End Component
      1. 2.4.1 Defining the Scope of the Project
      2. 2.4.2 Connecting Your C++ Application to Your QML Application
    5. 2.5 Connecting to the EVM
    6. 2.6 Building and Deploying Your Application For Your Embedded Platform
      1. 2.6.1 Build the Application
      2. 2.6.2 Transfer Executable to the Board
    7. 2.7 Running the Application
  6. 3Summary
  7. 4References

Running The First Project on PC

The workplace must look similar to the example shown in Figure 2-6

 Baseline of ProjectFigure 2-6 Baseline of Project

Figure 2-6 creates a window. This tutorial does not discuss Window declarations. To learn more about the window declaration, see the following: Window QML Type | Qt Quick | Qt 6.10.1

Continue and click the Run button.

 Running Your ApplicationFigure 2-7 Running Your Application

When the application runs, a screen displays with the title Hello World because a title has been defined for the window.

 Hello World WindowFigure 2-8 Hello World Window

The window size appears as 480×640, which matches the dimensions specified in the Window component.

The next step is to add a button named Blink to the application.