corrected translation of hex numbers to decimal numbers (#342)

This commit is contained in:
Drachenfrucht1
2017-10-17 05:07:58 +02:00
committed by Rotzbua
parent 2c4dd4306a
commit 313db9dd41

View File

@@ -95,8 +95,8 @@ void loop() {
byte dataBlock[] = {
0x01, 0x02, 0x03, 0x04, // 1, 2, 3, 4,
0x05, 0x06, 0x07, 0x08, // 5, 6, 7, 8,
0x08, 0x09, 0xff, 0x0b, // 9, 10, 255, 12,
0x0c, 0x0d, 0x0e, 0x0f // 13, 14, 15, 16
0x09, 0x0a, 0xff, 0x0b, // 9, 10, 255, 11,
0x0c, 0x0d, 0x0e, 0x0f // 12, 13, 14, 15
};
byte trailerBlock = 7;
MFRC522::StatusCode status;