2017-03-27 09:52:46 +00:00
|
|
|
/* WiFi Connection Example using WPS
|
2017-04-13 03:43:01 +00:00
|
|
|
|
|
|
|
This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, this
|
|
|
|
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2018-11-20 10:26:53 +00:00
|
|
|
This example demonstrates how to use WPS.
|
|
|
|
It supports two modes, which can be selected in menuconfig.
|
2017-04-13 03:43:01 +00:00
|
|
|
|
2018-11-20 10:26:53 +00:00
|
|
|
WPS_TYPE_PBC:
|
|
|
|
Start ESP32 and it will enter WPS PBC mode. Then push WPS button on the router.
|
|
|
|
ESP32 will receive SSID and password, and connect to the router.
|
|
|
|
|
|
|
|
WPS_TYPE_PIN:
|
|
|
|
Start ESP32, you'll see an eight-digit PIN number in log output.
|
|
|
|
Enter the PIN code on the router and then the ESP32 will get connected to router.
|
2017-04-13 03:43:01 +00:00
|
|
|
*/
|
|
|
|
|
2017-03-27 09:52:46 +00:00
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/event_groups.h"
|
|
|
|
#include "esp_wifi.h"
|
|
|
|
#include "esp_log.h"
|
|
|
|
#include "esp_wps.h"
|
2018-11-20 10:26:53 +00:00
|
|
|
#include "esp_event.h"
|
2017-07-13 15:46:19 +00:00
|
|
|
#include "nvs_flash.h"
|
2017-03-27 09:52:46 +00:00
|
|
|
|
|
|
|
|
2019-06-23 01:54:31 +00:00
|
|
|
/*set wps mode via project configuration */
|
2017-03-29 07:33:05 +00:00
|
|
|
#if CONFIG_EXAMPLE_WPS_TYPE_PBC
|
2018-11-20 10:26:53 +00:00
|
|
|
#define WPS_MODE WPS_TYPE_PBC
|
2017-03-29 07:33:05 +00:00
|
|
|
#elif CONFIG_EXAMPLE_WPS_TYPE_PIN
|
2018-11-20 10:26:53 +00:00
|
|
|
#define WPS_MODE WPS_TYPE_PIN
|
2017-03-29 07:33:05 +00:00
|
|
|
#else
|
2018-11-20 10:26:53 +00:00
|
|
|
#define WPS_MODE WPS_TYPE_DISABLE
|
2017-04-13 03:43:01 +00:00
|
|
|
#endif /*CONFIG_EXAMPLE_WPS_TYPE_PBC*/
|
|
|
|
|
2017-03-27 09:52:46 +00:00
|
|
|
|
|
|
|
#ifndef PIN2STR
|
|
|
|
#define PIN2STR(a) (a)[0], (a)[1], (a)[2], (a)[3], (a)[4], (a)[5], (a)[6], (a)[7]
|
|
|
|
#define PINSTR "%c%c%c%c%c%c%c%c"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static const char *TAG = "example_wps";
|
2018-11-20 10:26:53 +00:00
|
|
|
static esp_wps_config_t config = WPS_CONFIG_INIT_DEFAULT(WPS_MODE);
|
2017-03-27 09:52:46 +00:00
|
|
|
|
2018-11-20 10:26:53 +00:00
|
|
|
static void wifi_event_handler(void* arg, esp_event_base_t event_base,
|
|
|
|
int32_t event_id, void* event_data)
|
2017-03-27 09:52:46 +00:00
|
|
|
{
|
2018-11-20 10:26:53 +00:00
|
|
|
switch (event_id) {
|
|
|
|
case WIFI_EVENT_STA_START:
|
|
|
|
ESP_LOGI(TAG, "WIFI_EVENT_STA_START");
|
|
|
|
break;
|
|
|
|
case WIFI_EVENT_STA_DISCONNECTED:
|
|
|
|
ESP_LOGI(TAG, "WIFI_EVENT_STA_DISCONNECTED");
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_connect());
|
|
|
|
break;
|
|
|
|
case WIFI_EVENT_STA_WPS_ER_SUCCESS:
|
|
|
|
ESP_LOGI(TAG, "WIFI_EVENT_STA_WPS_ER_SUCCESS");
|
|
|
|
/* esp_wifi_wps_start() only gets ssid & password, so call esp_wifi_connect() here. */
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_wps_disable());
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_connect());
|
|
|
|
break;
|
|
|
|
case WIFI_EVENT_STA_WPS_ER_FAILED:
|
|
|
|
ESP_LOGI(TAG, "WIFI_EVENT_STA_WPS_ER_FAILED");
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_wps_disable());
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_wps_enable(&config));
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_wps_start(0));
|
|
|
|
break;
|
|
|
|
case WIFI_EVENT_STA_WPS_ER_TIMEOUT:
|
|
|
|
ESP_LOGI(TAG, "WIFI_EVENT_STA_WPS_ER_TIMEOUT");
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_wps_disable());
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_wps_enable(&config));
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_wps_start(0));
|
|
|
|
break;
|
|
|
|
case WIFI_EVENT_STA_WPS_ER_PIN:
|
|
|
|
ESP_LOGI(TAG, "WIFI_EVENT_STA_WPS_ER_PIN");
|
|
|
|
/* display the PIN code */
|
|
|
|
wifi_event_sta_wps_er_pin_t* event = (wifi_event_sta_wps_er_pin_t*) event_data;
|
|
|
|
ESP_LOGI(TAG, "WPS_PIN = " PINSTR, PIN2STR(event->pin_code));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2017-03-27 09:52:46 +00:00
|
|
|
}
|
2018-11-20 10:26:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void got_ip_event_handler(void* arg, esp_event_base_t event_base,
|
|
|
|
int32_t event_id, void* event_data)
|
|
|
|
{
|
|
|
|
ip_event_got_ip_t* event = (ip_event_got_ip_t*) event_data;
|
|
|
|
ESP_LOGI(TAG, "got ip: %s", ip4addr_ntoa(&event->ip_info.ip));
|
2017-03-27 09:52:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*init wifi as sta and start wps*/
|
|
|
|
static void start_wps(void)
|
|
|
|
{
|
|
|
|
tcpip_adapter_init();
|
2018-11-20 10:26:53 +00:00
|
|
|
ESP_ERROR_CHECK(esp_event_loop_create_default());
|
2017-03-27 09:52:46 +00:00
|
|
|
|
|
|
|
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_init(&cfg));
|
2018-11-20 10:26:53 +00:00
|
|
|
|
|
|
|
ESP_ERROR_CHECK(esp_event_handler_register(WIFI_EVENT, ESP_EVENT_ANY_ID, &wifi_event_handler, NULL));
|
|
|
|
ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_STA_GOT_IP, &got_ip_event_handler, NULL));
|
|
|
|
|
2017-03-27 09:52:46 +00:00
|
|
|
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_STA));
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_start());
|
2018-11-20 10:26:53 +00:00
|
|
|
|
2017-03-27 09:52:46 +00:00
|
|
|
ESP_LOGI(TAG, "start wps...");
|
2018-11-20 10:26:53 +00:00
|
|
|
|
2017-08-01 14:29:16 +00:00
|
|
|
ESP_ERROR_CHECK(esp_wifi_wps_enable(&config));
|
2017-03-27 09:52:46 +00:00
|
|
|
ESP_ERROR_CHECK(esp_wifi_wps_start(0));
|
|
|
|
}
|
|
|
|
|
2019-07-16 09:33:30 +00:00
|
|
|
void app_main(void)
|
2017-03-27 09:52:46 +00:00
|
|
|
{
|
2017-07-13 15:46:19 +00:00
|
|
|
/* Initialize NVS — it is used to store PHY calibration data */
|
|
|
|
esp_err_t ret = nvs_flash_init();
|
2018-07-25 15:11:09 +00:00
|
|
|
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) {
|
2017-07-13 15:46:19 +00:00
|
|
|
ESP_ERROR_CHECK(nvs_flash_erase());
|
|
|
|
ret = nvs_flash_init();
|
|
|
|
}
|
|
|
|
ESP_ERROR_CHECK( ret );
|
|
|
|
|
2017-03-27 09:52:46 +00:00
|
|
|
start_wps();
|
|
|
|
}
|