Print the raw type instead

This commit is contained in:
Avamander 2025-07-13 01:10:16 +03:00 committed by GitHub
parent bd6c09289a
commit f73874a445
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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