From 1d96e658fc77a2ec50dbb430f81dfbaefc6f9001 Mon Sep 17 00:00:00 2001 From: Foster Irwin Date: Tue, 4 May 2021 09:48:44 -0600 Subject: [PATCH] added notes about case sensitive in the SSID and password fields --- website/docs/settings/wifi.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/website/docs/settings/wifi.md b/website/docs/settings/wifi.md index db3075cc..00284bc9 100644 --- a/website/docs/settings/wifi.md +++ b/website/docs/settings/wifi.md @@ -26,6 +26,9 @@ If your `wifi_ssid` or `wifi_password` contain spaces, be sure to put quotation meshtastic --set wifi_ssid "my wifi ssid" --set wifi_password "my wifi password" ``` ::: +:::note +`wifi_ssid` & `wifi_password` are both **case sensitive** values. +::: ### wifi_ap_mode @@ -33,11 +36,11 @@ A boolean value that toggles the [Software Access Point](#software-access-point) ### wifi_password -In [SoftAP](#software-access-point) mode, this is the password to access your device's WiFi. In [Client](#wifi-client) mode, this is your WiFi Networks password. +In [SoftAP](#software-access-point) mode, this is the password to access your device's WiFi. In [Client](#wifi-client) mode, this is your WiFi Networks password. This string is case sensitive. ### wifi_ssid -In [SoftAP](#software-access-point) mode, this is the SSID broadcast to access your device's WiFi. In [Client](#wifi-client) mode, this is your WiFi Networks SSID. +In [SoftAP](#software-access-point) mode, this is the SSID broadcast to access your device's WiFi. In [Client](#wifi-client) mode, this is your WiFi Networks SSID. This string is case sensitive. ## Details