ESP32를 사용하면서 wifi를 연결을 구현하고 싶을 때가 있습니다. 그런데, 간혹 가다가 정확한 코드에 정확한 SSID, PW를 입력했음에도 불구하고, 연결이 안 되던 적이 있었습니다.
여러 방면으로 원인을 찾아봤지만, 근본적인 원인은 찾지 못했고 단기적인 해결책만 찾았습니다.
※이는 개인적인 상황에서 해결책임으로 보편적인 해결책이 아닐 수 있습니다.
저의 상황은 다음과 같습니다. 사용한 예제코드는 ESP32의 예제 중 하나인 WifiClient입니다.
/*
* This sketch sends data via HTTP GET requests to data.sparkfun.com service.
*
* You need to get streamId and privateKey at data.sparkfun.com and paste them
* below. Or just customize this script to talk to other HTTP servers.
*
*/
#include <WiFi.h>
const char* ssid = "your-ssid";
const char* password = "your-password";
const char* host = "data.sparkfun.com";
const char* streamId = "....................";
const char* privateKey = "....................";
void setup()
{
Serial.begin(115200);
delay(10);
// We start by connecting to a WiFi network
Serial.println();
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
int value = 0;
void loop()
{
delay(5000);
++value;
Serial.print("connecting to ");
Serial.println(host);
// Use WiFiClient class to create TCP connections
WiFiClient client;
const int httpPort = 80;
if (!client.connect(host, httpPort)) {
Serial.println("connection failed");
return;
}
// We now create a URI for the request
String url = "/input/";
url += streamId;
url += "?private_key=";
url += privateKey;
url += "&value=";
url += value;
Serial.print("Requesting URL: ");
Serial.println(url);
// This will send the request to the server
client.print(String("GET ") + url + " HTTP/1.1\r\n" +
"Host: " + host + "\r\n" +
"Connection: close\r\n\r\n");
unsigned long timeout = millis();
while (client.available() == 0) {
if (millis() - timeout > 5000) {
Serial.println(">>> Client Timeout !");
client.stop();
return;
}
}
// Read all the lines of the reply from server and print them to Serial
while(client.available()) {
String line = client.readStringUntil('\r');
Serial.print(line);
}
Serial.println();
Serial.println("closing connection");
}
이런 코드인데 ssid와 password를 정확히 입력해도 setup 함수의 while 문을 통과하지 못했습니다. 여러 가지 방법을 시도해 보던 중 다른 와이파이(2.4G)로 연결을 시도했더니 정상적으로 연결이 되었습니다.
그래서 문제가 있던 와이파이 기기와 정상적으로 연결한 와이파이의 기기의 차이점을 찾아냈습니다.
문제의 와이파이 기기 | 정상적인 와이파이 기기 |
SSID: ******** 프로토콜: Wi-Fi 4(802.11n) 보안 종류: WPA-개인 네트워크 대역: 2.4GHz 네트워크 채널: 11 링크 속도(수신/송신): 300/300 (Mbps) .... |
SSID: ******** 프로토콜: Wi-Fi 4(802.11n) 보안 종류: WPA2-개인 네트워크 대역: 2.4GHz 네트워크 채널: 7 링크 속도(수신/송신): 144/144 (Mbps) |
차이점은 보안 종류였습니다. 제가 알기론 ESP32 시리즈는 WPA/WPA2를 모두 지원하는 걸로 알고 있었지만, 실제로 테스트했을 때에는 WPA2-개인으로 된 와이파이만 연결에 성공하였습니다.
이는 저의 경우에 해당되는 해결책이며, 왜 그런지에 대한 원인은 자세히 파악되진 않았습니다.
'개발 > ESP32, ESP8266' 카테고리의 다른 글
[ESP32] esp_timer 와 sleep 모드 동시 사용시 발생하는 간섭 (0) | 2023.01.21 |
---|---|
[ESP32] RTC_SW_CPU_RST 에러 (0) | 2022.11.19 |
[ESP32 BLE 에러] BT_HCI: hcif disc complete: hdl 0x1, rsn 0x3e (0) | 2022.11.18 |
[ESP32 BLE 에러] BT_HCI: hcif disc complete: rsn 0x3d (0) | 2022.11.14 |
ESP8266(ESP-01, ESP-01S) wifi client, 서버로 부터 데이터 받기 (0) | 2022.11.11 |