Samsung Tizen是否支持原生NFC应用。我想在手表上使用本机应用程序来读取扫描标签并进行数据交换?
如果必须在html5中完成,它是否支持NFC数据交换?
答案 0 :(得分:2)
Samsung Tizen是否支持原生NFC应用。我喜欢原生应用 坐在手表上读取扫描的标签并进行数据交换?
是的。请参阅可穿戴原生reference
要阅读标记,您应该查看 TAG API。如果您还想进行数据交换,那么您应该查看点对点 API。
如果必须在html5中完成,它是否支持NFC数据交换?
使用Web API支持类似的功能。请查看Web API reference中的 NFCTag 和 NFCPeer 界面。
一个不错的开始(本机开发)点可能是检查现有的NFC here教程。
Here您将找到Web API的教程。
答案 1 :(得分:0)
您可以使用Samsung Gear S2上提供的NFC开发富Web应用程序(HTML5)。是的,它确实支持数据交换。
您可以按照以下链接获取更多信息
请参阅此链接,了解应用 Tizen Wearable Web Device API Reference 。
答案 2 :(得分:0)
The currently accepted answer is not correct. Both NFCTag and NFCPeer APIs are not supported on Samsung Gear devices.
Just SE (secure element) API - used for processing payments - is.
It's possible to verify that when registering for notifications callbacks as per the following guide. Functions nfc_manager_set_tag_discovered_cb
and nfc_manager_set_p2p_target_discovered_cb
returns NOT SUPPORTED.
The following SO questions mentions the same problem: NFC Tag not working on Gear S2