Skip to content

Commit

Permalink
Delete ssid and password in wifi projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Ines333 committed Feb 21, 2024
1 parent c396e4a commit 348d47a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ do {
print("ESP32 WiFi mode: \(wifiMode)")

// Fill the SSID and password below.
try esp.joinAP(ssid: "TP-LINK_CD1C", password: "q1w2e3r4", timeout: 20000)
try esp.joinAP(ssid: "", password: "", timeout: 20000)
print("ESP32 WiFi status: \(esp.wifiStatus)")

let ipInfo = try esp.getStationIP()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ do {
print("ESP32 WiFi mode: \(wifiMode)")

// Fill the SSID and password below.
try esp.joinAP(ssid: "TP-LINK_CD1C", password: "q1w2e3r4", timeout: 20000)
try esp.joinAP(ssid: "", password: "", timeout: 20000)
print("ESP32 WiFi status: \(esp.wifiStatus)")

let ipInfo = try esp.getStationIP()
Expand Down

0 comments on commit 348d47a

Please sign in to comment.