Add support for arduino 101

Tested with my board. Everything works.
This commit is contained in:
Piotr Padlewski
2016-09-10 18:22:09 -07:00
committed by Piotr Padlewski
parent bec50c194e
commit 09c5b6aa66
13 changed files with 14 additions and 14 deletions

View File

@@ -18,7 +18,7 @@
* Typical pin layout used:
* -----------------------------------------------------------------------------------------
* MFRC522 Arduino Arduino Arduino Arduino Arduino
* Reader/PCD Uno Mega Nano v3 Leonardo/Micro Pro Micro
* Reader/PCD Uno/101 Mega Nano v3 Leonardo/Micro Pro Micro
* Signal Pin Pin Pin Pin Pin Pin
* -----------------------------------------------------------------------------------------
* RST/Reset RST 9 5 D9 RESET/ICSP-5 RST
@@ -124,4 +124,4 @@ void printDec(byte *buffer, byte bufferSize) {
Serial.print(buffer[i] < 0x10 ? " 0" : " ");
Serial.print(buffer[i], DEC);
}
}
}