[fixup] Extract hexDump function
This commit is contained in:
parent
7f7959778c
commit
281aab33b8
10
src/util.h
10
src/util.h
@ -312,13 +312,5 @@ void sendTextToSign(
|
|||||||
Serial1.print(toSend);
|
Serial1.print(toSend);
|
||||||
|
|
||||||
Serial.println("Text sent to device: " + toSend);
|
Serial.println("Text sent to device: " + toSend);
|
||||||
Serial.print("Hex dump: ");
|
Serial.println("Hex dump: " + hexDump(toSend));
|
||||||
for (size_t i = 0; i < toSend.length(); ++i) {
|
|
||||||
auto hexChar = String(toSend[i], HEX);
|
|
||||||
if (hexChar.length() == 1) {
|
|
||||||
hexChar = '0' + hexChar;
|
|
||||||
}
|
|
||||||
Serial.print(hexChar + ' ');
|
|
||||||
}
|
|
||||||
Serial.println();
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user