You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
void loop(void) {
if (nfc.tagPresent()) {
NfcTag tag = nfc.read();
tag.print();
}
}
but when I try to upload it to my MKR zero i get
C:\Users\anton\Documents\Arduino\libraries\NDEF-1.1.0\MifareUltralight.cpp: In member function 'boolean MifareUltralight::write(NdefMessage&, byte*, unsigned int)':
C:\Users\anton\Documents\Arduino\libraries\NDEF-1.1.0\MifareUltralight.cpp:225:19: error: 'class PN532' has no member named 'mifareultralight_WritePage'
if (!nfc->mifareultralight_WritePage(page, src))
^
C:\Users\anton\Documents\Arduino\libraries\NDEF-1.1.0\MifareUltralight.cpp: In member function 'boolean MifareUltralight::clean()':
C:\Users\anton\Documents\Arduino\libraries\NDEF-1.1.0\MifareUltralight.cpp:254:19: error: 'class PN532' has no member named 'mifareultralight_WritePage'
if (!nfc->mifareultralight_WritePage(i, data)) {
^
exit status 1
Error compiling for board Arduino MKRZERO.
I would like to note that I am using a breakout PN532 from Adafruit, v1.3
The text was updated successfully, but these errors were encountered:
This is my code:
but when I try to upload it to my MKR zero i get
I would like to note that I am using a breakout PN532 from Adafruit, v1.3
The text was updated successfully, but these errors were encountered: