Skip to content

Latest commit

 

History

History
55 lines (44 loc) · 2.02 KB

README.md

File metadata and controls

55 lines (44 loc) · 2.02 KB

DNFC Tag, RF430CL330H_Shield

Dynamic Near Field Communication tag, open-source NFC tag that communicates with microcontroller.

Info

nfc tag

Connect Guide

//                  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)         |
//            |                 |          |                 |
//            |                 |          |                 |
//            |                 |          |                 |
//            |_________________|          |_________________|

Start up:

  1. Connect Arduino 2560/UNO with NFC Tag
  2. Make this library to arduino IDE
  3. Use example to write Tag
  4. Use NFC Reader read it

Easy use with NDEF

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.

Recommend Reader App

Android App NFC Taginfo by NXP

Analytics