Added default to get_encryption_type to hide warning when building

This commit is contained in:
Dionysus 2024-06-05 11:54:20 -04:00
parent 66845d0dcf
commit b2506fb589
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 2 additions and 0 deletions

View File

@ -396,6 +396,8 @@ String get_encryption_type(wifi_auth_mode_t encryptionType) {
return "WPA_WPA2_PSK";
case (WIFI_AUTH_WPA2_ENTERPRISE):
return "WPA2_ENTERPRISE";
default:
return "Unknown";
}
}