Dynamic Near Field Communication tag, open-source NFC tag that communicates with microcontroller.
// DNFC Tag (Host/Tester)
// RF430CL330H Arduino 2560/UNO
// (Slave) Master
// _________________ _________________
// 3.3V<--|VCC SDA|<-------->|P20(2560)/A4(UNO)|
// | | I2C | |
// | SCL|<-------->|P21(2560)/A5(UNO)|
// | | | |
// GND<--|GND /RST|<---------|P4 |
// | INTO|--------->|P3(INT1) |
// | | | |
// | | | |
// | | | |
// |_________________| |_________________|
- Connect Arduino 2560/UNO with NFC Tag
- Make this library to arduino IDE
- Use example to write Tag
- Use NFC Reader read it
You can write a NDEF message, like this:
NdefRecord records[1];
records[0].createUri("https://github.com");
Or more than one:
NdefRecord records[2];
records[0].createUri("https://github.com");
records[1].createUri("https://github.com/awong1900/RF430CL330H_Shield");
You can write data in different formats for example, URI, External, MIME, Text, even Application what can open app directly.
Android App NFC Taginfo by NXP