我想从我的NFC阅读器(在Linux上使用nfcpy)向我的智能手机发送NDEF消息。我有以下代码。
#!/usr/bin/python
# -*- coding: latin-1 -*-
# -----------------------------------------------------------------------------
# Copyright 2010-2011 Stephen Tiedemann <stephen.tiedemann@googlemail.com>
#
# Licensed under the EUPL, Version 1.1 or - as soon they
# will be approved by the European Commission - subsequent
# versions of the EUPL (the "Licence");
# You may not use this work except in compliance with the
# Licence.
# You may obtain a copy of the Licence at:
#
# http://www.osor.eu/eupl
#
# Unless required by applicable law or agreed to in
# writing, software distributed under the Licence is
# distributed on an "AS IS" basis,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied.
# See the Licence for the specific language governing
# permissions and limitations under the Licence.
# -----------------------------------------------------------------------------
import logging
log = logging.getLogger('main')
import os
import sys
import time
import argparse
sys.path.insert(1, os.path.split(sys.path[0])[0])
from cli import CommandLineInterface
import nfc
import nfc.snep
import nfc.ndef
class DefaultServer(nfc.snep.SnepServer):
def __init__(self, llc):
service_name = 'urn:nfc:sn:snep'
super(DefaultServer, self).__init__(llc, service_name)
def put(self, ndef_message):
log.info("default snep server got put request")
log.info(ndef_message.pretty())
return nfc.snep.Success
class ValidationServer(nfc.snep.SnepServer):
def __init__(self, llc):
service_name = "urn:nfc:xsn:nfc-forum.org:snep-validation"
super(ValidationServer, self).__init__(llc, service_name, 10000)
self.ndef_message_store = dict()
def put(self, ndef_message):
log.info("validation snep server got put request")
key = (ndef_message.type, ndef_message.name)
log.info("store ndef message under key " + str(key))
self.ndef_message_store[key] = ndef_message
return nfc.snep.Success
def get(self, acceptable_length, ndef_message):
log.info("validation snep server got get request")
key = (ndef_message.type, ndef_message.name)
log.info("client requests ndef message with key " + str(key))
if key in self.ndef_message_store:
ndef_message = self.ndef_message_store[key]
log.info("found matching ndef message")
log.info(ndef_message.pretty())
if len(str(ndef_message)) <= acceptable_length:
return ndef_message
else: return nfc.snep.ExcessData
return nfc.snep.NotFound
class TestProgram(CommandLineInterface):
def __init__(self):
parser = argparse.ArgumentParser()
super(TestProgram, self).__init__(
parser, groups="llcp dbg clf")
def on_llcp_startup(self, clf, llc):
self.default_snep_server = DefaultServer(llc)
self.validation_snep_server = ValidationServer(llc)
return llc
def on_llcp_connect(self, llc):
self.default_snep_server.start()
self.validation_snep_server.start()
return True
if __name__ == '__main__':
TestProgram().run()
我应该在哪里以及如何制作NDEF信息并将其与现有服务器一起发送到我的智能手机?另一种方式(从智能手机到NFC阅读器已经开始工作)。
提前致谢!
答案 0 :(得分:2)
用于发送NDEF消息的简单NDEF交换协议是客户端/服务器协议。提供的代码示例实现了SNEP服务器,从而成功地从电话接收NDEF消息。要发送NDEF消息必须使用SNEP客户端,nfcpy中的等价物是examples / snep-test-client.py。但更好的选择是使用examples/beam.py send ndef <file.ndef>
。