Hi,
have you some links where i could find some coding examples excepting Nokia 6131 NFC SDK examples...
Thanks
Hi,
have you some links where i could find some coding examples excepting Nokia 6131 NFC SDK examples...
Thanks
Hi,
I need also some tutorial to start to write a program with the NFC SDK.
Please post some code![]()
bye,
Rob
Here there is something useful: http://wiki.forum.nokia.com/index.ph...131_NFC_-_FAQs
Nokia 6131 NFC allows MIDlets to access the internal secure element of the phone. The internal connections are opened by directly calling Connector.open() and using the “internal.se.url” system property. The DiscoveryManager isn't needed.
Here is a sample code for how to open an internal ISO14443 connection, using the javax.microedition.contactless.sc.ISO14443Connection interface:
String uri = System.getProperty("internal.se.url");
ISO14443Connection iseConn = (ISO14443Connection) Connector.open(uri);
---
also at the bottom of the page you can download a presentation and a source code.
Hope that it's enough for you.
bye
Roberto
Yep thanks for the link,
I haven't seen it before...
Just one problem for these interesting examples, it's that on TagTestMidlet example, manipulate data through a Mifare connection seems to be done with the package "com.philips.rf.MifareStdConnection", but for the nokia 6131 NFC SDK, the right package is "com.nokia.nfc.nxp.mfstd".
Unfortunately the mifare standard connection is not yet implemented on this environment...
Ciao