Merge pull request #585 from bhelterline/master

Update ReadNUID.ino
This commit is contained in:
Rotzbua 2022-06-06 10:55:33 +02:00 committed by GitHub
commit b2ff919438
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,7 @@ void printHex(byte *buffer, byte bufferSize) {
*/
void printDec(byte *buffer, byte bufferSize) {
for (byte i = 0; i < bufferSize; i++) {
Serial.print(buffer[i] < 0x10 ? " 0" : " ");
Serial.print(' ');
Serial.print(buffer[i], DEC);
}
}