在Qt QML中获取NFC唯一ID

时间:2018-07-13 17:39:52

标签: qt qml nfc

有什么方法可以在Qt QML中获取NFC标签的唯一ID。我已经阅读了qtNFC的文档,但是似乎没有明确的方法来获取唯一ID。获得唯一ID可以在C ++中完成,所以我认为在qml中也可以吗?

import QtQuick 2.9
import QtQuick.Window 2.2
import QtNfc 5.9

Window {
 visible: true
 width: 640
 height: 480
 title: qsTr("Hello World")


 Text{
     anchors.centerIn: parent
     text: "Unique ID here"
 }

 NearField{
    onTagFound: {code for fetching UID}

 }
}

感谢您的帮助。

0 个答案:

没有答案