我有来自 Sony 的 SmartTag,标签的内容是:
Contents of the NDEF message:
Message size: 41 bytes
Type name: NFC RTD Specification
Record type: U [URI]
semc://liveware/A1/2/NT2/5/smarttags
Raw NDEF message (hex):
D1 01 25 55 00 73 65 6D 63 3A 2F 2F 6C 69 76 65 77 61 72 65 2F 41 31 2F 32 2F 4E 54 32 2F 35 2F 73 6D 61 72 74 74 61 67 73
如何从 windows phone sdk 订阅此消息?
我尝试了以下方法:
proximityDevice.SubscribeForMessage("NDEF:URI.semc://liveware/A1/2/NT2/5/smarttags", AddressOf messageReceived)
'and
proximityDevice.SubscribeForMessage("NDEF:URI.semc", AddressOf messageReceived)
我无法从标签接收数据。
我的问题是,我如何订阅这些数据:semc://liveware/A1/2/NT2/5/smarttags
非常感谢您的帮助。