Update ReadNUID.ino

Fixed decimal helper function
This commit is contained in:
Brian Helterline 2022-06-05 16:56:01 -07:00
parent ae28c47870
commit 8458aeeddf

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);
}
}