corrected translation of hex numbers to decimal numbers (#342)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user