acid-drop- Unnamed repository; edit this file 'description' to name the repository. |
git clone git://git.acid.vegas/-c.git |
Log | Files | Refs | Archive | README | LICENSE |
commit b2506fb589441669c54ad3b6b017ca0245ffa0b0
parent 66845d0dcf4e3013f2c507f2953b289e5eb561c8 Author: acidvegas <acid.vegas@acid.vegas> Date: Wed, 5 Jun 2024 11:54:20 -0400 Added default to get_encryption_type to hide warning when building Diffstat:
|
1 file changed, 2 insertions(+), 0 deletions(-) |
diff --git a/src/main.ino b/src/main.ino @@ -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"; } } |