2021-02-18 11:14:35 +01:00
|
|
|
// Copyright 2015-2021 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2020-04-15 22:37:55 +02:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <esp_err.h>
|
|
|
|
#include <esp_wifi.h>
|
|
|
|
#include <esp_event_loop.h>
|
|
|
|
#include <esp32-hal.h>
|
|
|
|
|
|
|
|
#include <wifi_provisioning/scheme_ble.h>
|
|
|
|
#include <wifi_provisioning/scheme_softap.h>
|
|
|
|
#include <wifi_provisioning/manager.h>
|
|
|
|
#undef IPADDR_NONE
|
2020-11-18 23:12:16 +01:00
|
|
|
#include "WiFiProv.h"
|
|
|
|
#include "SimpleBLE.h"
|
2020-04-15 22:37:55 +02:00
|
|
|
|
|
|
|
extern esp_err_t postToSysQueue(system_prov_event_t *);
|
2020-11-10 19:51:10 +01:00
|
|
|
|
|
|
|
static wifi_prov_mgr_config_t config;
|
|
|
|
static scheme_t prov_scheme;
|
2020-04-15 22:37:55 +02:00
|
|
|
static const uint8_t custom_service_uuid[16] = { 0xb4, 0xdf, 0x5a, 0x1c, 0x3f, 0x6b, 0xf4, 0xbf,
|
|
|
|
0xea, 0x4a, 0x82, 0x03, 0x04, 0x90, 0x1a, 0x02, };
|
|
|
|
|
2020-08-25 10:03:06 +02:00
|
|
|
#define SERV_NAME_PREFIX_PROV "PROV_"
|
2020-04-15 22:37:55 +02:00
|
|
|
|
2020-08-25 10:03:06 +02:00
|
|
|
void provSchemeBLE()
|
|
|
|
{
|
|
|
|
prov_scheme = WIFI_PROV_SCHEME_BLE;
|
|
|
|
config.scheme = wifi_prov_scheme_ble;
|
|
|
|
}
|
|
|
|
|
|
|
|
void provSchemeSoftAP()
|
|
|
|
{
|
|
|
|
prov_scheme = WIFI_PROV_SCHEME_SOFTAP;
|
|
|
|
config.scheme = wifi_prov_scheme_softap;
|
|
|
|
}
|
|
|
|
|
2020-04-15 22:37:55 +02:00
|
|
|
static void prov_event_handler(void *user_data, wifi_prov_cb_event_t event, void *event_data)
|
|
|
|
{
|
|
|
|
if (!event) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
system_prov_event_t *sys_prov = (system_prov_event_t *)malloc(sizeof(system_prov_event_t));
|
|
|
|
if(sys_prov == NULL) {
|
|
|
|
log_e("Malloc Failed");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sys_prov->prov_event = (wifi_prov_event_t *)malloc(sizeof(wifi_prov_event_t));
|
|
|
|
if(sys_prov->prov_event == NULL) {
|
|
|
|
log_e("Malloc Failed");
|
|
|
|
free(sys_prov);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sys_prov->sys_event = (system_event_t *)malloc(sizeof(system_event_t));
|
|
|
|
if(sys_prov->sys_event == NULL) {
|
|
|
|
log_e("Malloc Failed");
|
|
|
|
free(sys_prov->prov_event);
|
|
|
|
free(sys_prov);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sys_prov->prov_event->event = event;
|
|
|
|
sys_prov->prov_event->event_data = event_data;
|
|
|
|
sys_prov->sys_event->event_id = SYSTEM_EVENT_MAX;
|
|
|
|
esp_err_t check = postToSysQueue(sys_prov);
|
|
|
|
if(check == ESP_FAIL) {
|
|
|
|
log_e("Provisioning event not send to queue");
|
|
|
|
free(sys_prov->sys_event);
|
|
|
|
free(sys_prov->prov_event);
|
|
|
|
free(sys_prov);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-25 10:03:06 +02:00
|
|
|
static void get_device_service_name(char *service_name, size_t max)
|
2020-04-15 22:37:55 +02:00
|
|
|
{
|
|
|
|
uint8_t eth_mac[6];
|
|
|
|
WiFi.macAddress(eth_mac);
|
2020-08-25 10:03:06 +02:00
|
|
|
snprintf(service_name, max, "%s%02X%02X%02X",SERV_NAME_PREFIX_PROV, eth_mac[3], eth_mac[4], eth_mac[5]);
|
2020-04-15 22:37:55 +02:00
|
|
|
}
|
|
|
|
|
2020-08-25 10:03:06 +02:00
|
|
|
void WiFiProvClass :: beginProvision(void (*scheme_cb)(), wifi_prov_event_handler_t scheme_event_handler, wifi_prov_security_t security, const char * pop, const char *service_name, const char *service_key, uint8_t * uuid)
|
2020-04-15 22:37:55 +02:00
|
|
|
{
|
2020-11-18 23:12:16 +01:00
|
|
|
WiFi.enableProv(true);
|
2020-04-15 22:37:55 +02:00
|
|
|
bool provisioned = false;
|
2020-08-25 10:03:06 +02:00
|
|
|
scheme_cb();
|
2020-04-15 22:37:55 +02:00
|
|
|
config.scheme_event_handler = scheme_event_handler;
|
|
|
|
config.app_event_handler = {
|
|
|
|
.event_cb = prov_event_handler,
|
|
|
|
.user_data = NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
wifi_prov_mgr_init(config);
|
|
|
|
WiFi.mode(WIFI_MODE_AP);
|
|
|
|
wifi_prov_mgr_is_provisioned(&provisioned);
|
|
|
|
if(provisioned == false) {
|
|
|
|
if(prov_scheme == WIFI_PROV_SCHEME_BLE) {
|
|
|
|
service_key = NULL;
|
|
|
|
if(uuid == NULL) {
|
|
|
|
uuid=(uint8_t *)custom_service_uuid;
|
|
|
|
}
|
|
|
|
wifi_prov_scheme_ble_set_service_uuid(uuid);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(service_name == NULL) {
|
|
|
|
char service_name_temp[12];
|
2020-08-25 10:03:06 +02:00
|
|
|
get_device_service_name(service_name_temp,sizeof(service_name_temp));
|
2020-04-15 22:37:55 +02:00
|
|
|
service_name = (const char *)service_name_temp;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(prov_scheme == WIFI_PROV_SCHEME_BLE) {
|
|
|
|
log_i("Starting AP using BLE\n service_name : %s\n pop : %s",service_name,pop);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if(service_key == NULL) {
|
|
|
|
log_i("Starting AP using SOFTAP\n service_name : %s\n pop : %s",service_name,pop);
|
|
|
|
} else {
|
|
|
|
log_i("Starting AP using SOFTAP\n service_name : %s\n password : %s\n pop : %s",service_name,service_key,pop);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_prov_mgr_start_provisioning(security,pop,service_name,service_key);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
wifi_prov_mgr_deinit();
|
|
|
|
WiFi.mode(WIFI_MODE_STA);
|
2020-11-18 23:12:16 +01:00
|
|
|
log_i("Already Provisioned, starting Wi-Fi STA");
|
2020-04-21 13:39:26 +02:00
|
|
|
#if ARDUHAL_LOG_LEVEL >= ARDUHAL_LOG_LEVEL_INFO
|
|
|
|
wifi_config_t conf;
|
|
|
|
esp_wifi_get_config(WIFI_IF_STA,&conf);
|
|
|
|
log_i("SSID : %s\n",conf.sta.ssid);
|
|
|
|
#endif
|
2020-08-25 10:03:06 +02:00
|
|
|
log_i("CONNECTING TO THE ACCESS POINT : ");
|
|
|
|
WiFi.begin();
|
2020-04-15 22:37:55 +02:00
|
|
|
}
|
|
|
|
}
|
2020-11-18 23:12:16 +01:00
|
|
|
WiFiProvClass WiFiProv;
|