Skip to content

Qt for MCUs

Discussions and questions about Qt Quick Ultralite and using Qt on microcontrollers in general

151 Topics 463 Posts
  • Some problem with "qmltocpp"

    Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    jsulmJ
    @misu said in Some problem with "qmltocpp": did you have the same problem? I never used Qt for MCUs. You did not answer this question: Did you check what is inside /home/mi/Qt? The error message tells you what QtCreator is looking for.
  • Tutorial for creating UIs with Qt Creator in Design mode

    Solved
    4
    0 Votes
    4 Posts
    1k Views
    ylopesY
    Here is another video tutorial specifically about using Qt Design Studio with Qt for MCUs: https://resources.qt.io/qt-on-demand-webinars/get-started-creating-dynamic-uis-with-qt-design-studio-and-photoshop-on-mcus-on-demand-webinar-2
  • From Qt Design to QT Creator for MCUs

    Solved
    4
    0 Votes
    4 Posts
    1k Views
    L
    @ylopes That was it Thanks!
  • This topic is deleted!

    Unsolved
    2
    0 Votes
    2 Posts
    58 Views
  • Scroll ListView from code

    Solved
    2
    0 Votes
    2 Posts
    916 Views
    ylopesY
    You could programmatically change the contentX and contentY properties of the ListView and use a Behavior to animate the change of these properties. Here is a small example: import QtQuick 2.0 import QtQuick.Controls 2.0 Rectangle { width: 480 height: 272 ListView { id: list width: 380 height: 480 interactive: false Behavior on contentY { NumberAnimation { duration: 500 easing.type: Easing.OutCubic } } model: 30 delegate: Text { height: 40 width: list.width verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter text: index } } Button { id: button anchors.right: parent.right height: 272 width: 100 text: "Scroll!" onClicked: list.contentY = (list.contentY === 0 ? -300 : 0) } }
  • Highlight property in Qt for MCU

    Unsolved
    11
    0 Votes
    11 Posts
    3k Views
    A
    @Sachin_Og https://doc.qt.io/QtForMCUs/qml-qtquick-borderimage.html#border-prop so border.color property is missing. Can you raise a feature request for this from the Support Portal of your Qt Account? [image: b3b5785a-819b-46bd-aec1-7e6b30e1377d.jpeg]
  • Qt Ultra Lite : StackView Alternative

    Solved
    4
    0 Votes
    4 Posts
    1k Views
    J.HilkJ
    @Sachin_Og IIRC https://doc.qt.io/QtForMCUs/qml-qtquick-controls-swipeview.html#interactive-prop set that to false
  • Which are the stm32 MCU's supporting Qt Development Platform?

    Unsolved
    2
    0 Votes
    2 Posts
    839 Views
    ylopesY
    You can find the list here: https://doc.qt.io/QtForMCUs/qtul-supported-platforms.html#supported-boards-from-st These are the ones with out-of-the box support, but other MCUs can be adapted as well.
  • Qt and STM32CubeIde code Integration

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    ylopesY
    There is an example in the Qt for MCUs SDK named "interrupt_handler". This should help you see how you can include sources from a STM32CubeIDE project. Integrating Qt for MCUs in a STMCube project might be possible today but I don't think it's straightforward and we don't have documentation for it. This is something we will be looking into in the near future, to support this kind of use case "out-of-the-box".
  • STM32F769 board, QML

    Solved
    3
    0 Votes
    3 Posts
    1k Views
    S
    Thank you ylopes, it works. Yes I watched the video for 1.0 release and currently I am working on 1.2 version. I missed the documentation. Thanks for the link.