HomeSort by relevance Sort by last modified time
    Searched refs:PN532 (Results 1 - 8 of 8) sorted by null

  /hardware/bsp/intel/peripheral/libupm/examples/c++/
pn532-writeurl.cxx 27 #include "pn532.h"
39 // Instantiate an PN532 on I2C bus 0 (default) using gpio 3 for the
42 upm::PN532 *nfc = new upm::PN532(3, 2);
53 printf("Could not identify PN532\n");
pn532.cxx 28 #include "pn532.h"
46 // Instantiate an PN532 on I2C bus 0 (default) using gpio 3 for the
49 upm::PN532 *nfc = new upm::PN532(3, 2);
60 printf("Could not identify PN532\n");
  /hardware/bsp/intel/peripheral/libupm/examples/python/
pn532.py 27 # Instantiate an PN532 on I2C bus 0 (default) using gpio 3 for the
29 myNFC = upmPn532.PN532(3, 2)
55 print "Could not identify PN532"
72 if (myNFC.readPassiveTargetID(upmPn532.PN532.BAUD_MIFARE_ISO14443A,
pn532-writeurl.py 27 # Instantiate an PN532 on I2C bus 0 (default) using gpio 3 for the
29 myNFC = upmPn532.PN532(3, 2)
55 print "Could not identify PN532"
77 if (myNFC.readPassiveTargetID(upmPn532.PN532.BAUD_MIFARE_ISO14443A,
100 if (not myNFC.ntag2xx_WriteNDEFURI(upmPn532.PN532.NDEF_URIPREFIX_HTTP, url, 48)):
  /hardware/bsp/intel/peripheral/libupm/src/pn532/
pn532.cxx 5 * This code is heavily based on the Adafruit-PN532 library at
6 * https://github.com/adafruit/Adafruit-PN532, which is licensed under
7 * the BSD license. See upm/src/pn532/license.txt
35 #include "pn532.h"
47 PN532::PN532(int irq, int reset, int bus, uint8_t address):
77 PN532::~PN532()
83 bool PN532::init()
153 uint32_t PN532::getFirmwareVersion(
    [all...]
pn532.h 5 * This code is heavily based on the Adafruit-PN532 library at
6 * https://github.com/adafruit/Adafruit-PN532, which is licensed under
7 * the BSD license. See upm/src/pn532/license.txt
53 * @brief PN532 NFC/RFID reader/writer
54 * @defgroup pn532 libupm-pn532
59 * @library pn532
60 * @sensor pn532
61 * @comname PN532 NFC/RFID reader/writer
67 * @brief API for the PN532 based NFC/RFID reader/write
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
pn532-writeurl.js 28 // Load PN532 module
29 var pn532 = require('jsupm_pn532'); variable
31 // Instantiate an PN532 on I2C bus 0 (default) using gpio 3 for the
33 var myNFCObj = new pn532.PN532(3, 2);
47 if (!myNFCObj.ntag2xx_WriteNDEFURI(pn532.PN532.NDEF_URIPREFIX_HTTP,
68 pn532.cleanUp();
69 pn532 = null;
90 console.log("Could not identify PN532");
    [all...]
pn532.js 28 // Load PN532 module
29 var pn532 = require('jsupm_pn532'); variable
31 // Instantiate an PN532 on I2C bus 0 (default) using gpio 3 for the
33 var myNFCObj = new pn532.PN532(3, 2);
44 console.log("Could not identify PN532");
55 var uidSize = new pn532.uint8Array(0);
56 var uid = new pn532.uint8Array(7);
62 if (myNFCObj.readPassiveTargetID(pn532.PN532.BAUD_MIFARE_ISO14443A
    [all...]

Completed in 3557 milliseconds