Merge pull request #14 from Avamander/patch-1

Print out the encryption type as integer when it's not known
This commit is contained in:
Brent Rubell 2025-07-14 11:47:19 -04:00 committed by GitHub
commit 9308fd5d0f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -105,7 +105,9 @@ void printEncryptionType(int thisType) {
break;
case ENC_TYPE_UNKNOWN:
default:
Serial.println("Unknown");
Serial.print("Unknown (");
Serial.print(thisType);
Serial.println(")");
break;
}
}