APKPure에서 안전하고 빠른 APK 다운로드
APKPure는 바이러스 없는 ESP8266 SmartConfig APK 다운로드를 위해 서명 확인을 사용합니다.
ESP8266 SmartConfig
ESP8266 SmartConfig
Arduino Code
you can simply call beginSmartConfig() like this
WiFi.beginSmartConfig();
while(1){
delay(1000);
if(WiFi.smartConfigDone()){
Serial.println("SmartConfig Success");
break;
}
}
or the easier way is use library that support smartConfig function such as
WiFiConnector Arduino Library: https://github.com/cmmakerclub/WiFiConnector