2016-10-06 13:21:30 +02:00
|
|
|
/*
|
|
|
|
ESP8266WiFiSTA.cpp - WiFi library for esp8266
|
|
|
|
|
|
|
|
Copyright (c) 2014 Ivan Grokhotkov. All rights reserved.
|
|
|
|
This file is part of the esp8266 core for Arduino environment.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
Reworked on 28 Dec 2015 by Markus Sattler
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "WiFi.h"
|
|
|
|
#include "WiFiGeneric.h"
|
|
|
|
#include "WiFiSTA.h"
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <esp_err.h>
|
|
|
|
#include <esp_wifi.h>
|
|
|
|
#include <esp_event_loop.h>
|
|
|
|
#include <esp32-hal.h>
|
|
|
|
#include <lwip/ip_addr.h>
|
|
|
|
#include "lwip/err.h"
|
|
|
|
#include "lwip/dns.h"
|
2017-01-20 11:39:51 +01:00
|
|
|
#include <esp_smartconfig.h>
|
2016-10-06 13:21:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void esp_schedule();
|
|
|
|
extern "C" void esp_yield();
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------------------------------------------
|
|
|
|
// ---------------------------------------------------- Private functions ------------------------------------------------
|
|
|
|
// -----------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static bool sta_config_equal(const wifi_config_t& lhs, const wifi_config_t& rhs);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* compare two STA configurations
|
|
|
|
* @param lhs station_config
|
|
|
|
* @param rhs station_config
|
|
|
|
* @return equal
|
|
|
|
*/
|
|
|
|
static bool sta_config_equal(const wifi_config_t& lhs, const wifi_config_t& rhs)
|
|
|
|
{
|
|
|
|
if(strcmp(reinterpret_cast<const char*>(lhs.sta.ssid), reinterpret_cast<const char*>(rhs.sta.ssid)) != 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(strcmp(reinterpret_cast<const char*>(lhs.sta.password), reinterpret_cast<const char*>(rhs.sta.password)) != 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lhs.sta.bssid_set != rhs.sta.bssid_set) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lhs.sta.bssid_set) {
|
|
|
|
if(memcmp(lhs.sta.bssid, rhs.sta.bssid, 6) != 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------------------------------------------
|
|
|
|
// ---------------------------------------------------- STA function -----------------------------------------------------
|
|
|
|
// -----------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
bool WiFiSTAClass::_useStaticIp = false;
|
|
|
|
wl_status_t WiFiSTAClass::_status = WL_NO_SHIELD;
|
|
|
|
/**
|
|
|
|
* Start Wifi connection
|
|
|
|
* if passphrase is set the most secure supported mode will be automatically selected
|
|
|
|
* @param ssid const char* Pointer to the SSID string.
|
|
|
|
* @param passphrase const char * Optional. Passphrase. Valid characters in a passphrase must be between ASCII 32-126 (decimal).
|
|
|
|
* @param bssid uint8_t[6] Optional. BSSID / MAC of AP
|
|
|
|
* @param channel Optional. Channel of AP
|
|
|
|
* @param connect Optional. call connect
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
wl_status_t WiFiSTAClass::begin(const char* ssid, const char *passphrase, int32_t channel, const uint8_t* bssid, bool connect)
|
|
|
|
{
|
|
|
|
|
|
|
|
if(!WiFi.enableSTA(true)) {
|
|
|
|
// enable STA failed
|
|
|
|
return WL_CONNECT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!ssid || *ssid == 0x00 || strlen(ssid) > 31) {
|
|
|
|
// fail SSID too long or missing!
|
|
|
|
return WL_CONNECT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(passphrase && strlen(passphrase) > 63) {
|
|
|
|
// fail passphrase too long!
|
|
|
|
return WL_CONNECT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_config_t conf;
|
|
|
|
strcpy(reinterpret_cast<char*>(conf.sta.ssid), ssid);
|
|
|
|
|
|
|
|
if(passphrase) {
|
|
|
|
strcpy(reinterpret_cast<char*>(conf.sta.password), passphrase);
|
|
|
|
} else {
|
|
|
|
*conf.sta.password = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(bssid) {
|
|
|
|
conf.sta.bssid_set = 1;
|
|
|
|
memcpy((void *) &conf.sta.bssid[0], (void *) bssid, 6);
|
|
|
|
} else {
|
|
|
|
conf.sta.bssid_set = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_config_t current_conf;
|
|
|
|
esp_wifi_get_config(WIFI_IF_STA, ¤t_conf);
|
|
|
|
if(!sta_config_equal(current_conf, conf)) {
|
|
|
|
esp_wifi_set_config(WIFI_IF_STA, &conf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(channel > 0 && channel <= 13) {
|
|
|
|
esp_wifi_set_channel(channel, WIFI_SECOND_CHAN_NONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!_useStaticIp) {
|
|
|
|
tcpip_adapter_dhcpc_start(TCPIP_ADAPTER_IF_STA);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(connect) {
|
|
|
|
esp_wifi_connect();
|
|
|
|
}
|
|
|
|
|
|
|
|
return status();
|
|
|
|
}
|
|
|
|
|
|
|
|
wl_status_t WiFiSTAClass::begin(char* ssid, char *passphrase, int32_t channel, const uint8_t* bssid, bool connect)
|
|
|
|
{
|
|
|
|
return begin((const char*) ssid, (const char*) passphrase, channel, bssid, connect);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use to connect to SDK config.
|
|
|
|
* @return wl_status_t
|
|
|
|
*/
|
|
|
|
wl_status_t WiFiSTAClass::begin()
|
|
|
|
{
|
|
|
|
|
|
|
|
if(!WiFi.enableSTA(true)) {
|
|
|
|
// enable STA failed
|
|
|
|
return WL_CONNECT_FAILED;
|
|
|
|
}
|
|
|
|
esp_wifi_start();
|
|
|
|
esp_wifi_connect();
|
|
|
|
|
|
|
|
if(!_useStaticIp) {
|
|
|
|
tcpip_adapter_dhcpc_start(TCPIP_ADAPTER_IF_STA);
|
|
|
|
}
|
|
|
|
return status();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WiFiSTAClass::_setStatus(wl_status_t status)
|
|
|
|
{
|
|
|
|
_status = status;
|
|
|
|
//log_i("wifi status: %d", status);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Change IP configuration settings disabling the dhcp client
|
|
|
|
* @param local_ip Static ip configuration
|
|
|
|
* @param gateway Static gateway configuration
|
|
|
|
* @param subnet Static Subnet mask
|
|
|
|
* @param dns1 Static DNS server 1
|
|
|
|
* @param dns2 Static DNS server 2
|
|
|
|
*/
|
|
|
|
bool WiFiSTAClass::config(IPAddress local_ip, IPAddress gateway, IPAddress subnet, IPAddress dns1, IPAddress dns2)
|
|
|
|
{
|
|
|
|
|
|
|
|
if(!WiFi.enableSTA(true)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
tcpip_adapter_ip_info_t info;
|
|
|
|
info.ip.addr = static_cast<uint32_t>(local_ip);
|
|
|
|
info.gw.addr = static_cast<uint32_t>(gateway);
|
|
|
|
info.netmask.addr = static_cast<uint32_t>(subnet);
|
|
|
|
|
|
|
|
tcpip_adapter_dhcpc_stop(TCPIP_ADAPTER_IF_STA);
|
|
|
|
if(tcpip_adapter_set_ip_info(TCPIP_ADAPTER_IF_STA, &info)) {
|
|
|
|
_useStaticIp = true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ip_addr_t d;
|
|
|
|
|
|
|
|
if(dns1 != (uint32_t)0x00000000) {
|
|
|
|
// Set DNS1-Server
|
|
|
|
d.u_addr.ip4.addr = static_cast<uint32_t>(dns1);
|
|
|
|
dns_setserver(0, &d);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(dns2 != (uint32_t)0x00000000) {
|
|
|
|
// Set DNS2-Server
|
|
|
|
d.u_addr.ip4.addr = static_cast<uint32_t>(dns2);
|
|
|
|
dns_setserver(1, &d);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* will force a disconnect an then start reconnecting to AP
|
|
|
|
* @return ok
|
|
|
|
*/
|
|
|
|
bool WiFiSTAClass::reconnect()
|
|
|
|
{
|
|
|
|
if((WiFi.getMode() & WIFI_MODE_STA) != 0) {
|
|
|
|
if(esp_wifi_disconnect() == ESP_OK) {
|
|
|
|
return esp_wifi_connect() == ESP_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disconnect from the network
|
|
|
|
* @param wifioff
|
|
|
|
* @return one value of wl_status_t enum
|
|
|
|
*/
|
|
|
|
bool WiFiSTAClass::disconnect(bool wifioff)
|
|
|
|
{
|
|
|
|
bool ret;
|
|
|
|
wifi_config_t conf;
|
|
|
|
*conf.sta.ssid = 0;
|
|
|
|
*conf.sta.password = 0;
|
|
|
|
|
|
|
|
esp_wifi_set_config(WIFI_IF_STA, &conf);
|
|
|
|
ret = esp_wifi_set_config(WIFI_IF_STA, &conf) == ESP_OK;
|
|
|
|
|
|
|
|
if(wifioff) {
|
|
|
|
WiFi.enableSTA(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* is STA interface connected?
|
|
|
|
* @return true if STA is connected to an AD
|
|
|
|
*/
|
|
|
|
bool WiFiSTAClass::isConnected()
|
|
|
|
{
|
|
|
|
return (status() == WL_CONNECTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setting the ESP32 station to connect to the AP (which is recorded)
|
|
|
|
* automatically or not when powered on. Enable auto-connect by default.
|
|
|
|
* @param autoConnect bool
|
|
|
|
* @return if saved
|
|
|
|
*/
|
|
|
|
bool WiFiSTAClass::setAutoConnect(bool autoConnect)
|
|
|
|
{
|
|
|
|
bool ret;
|
|
|
|
ret = esp_wifi_set_auto_connect(autoConnect);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if ESP32 station mode will connect to AP
|
|
|
|
* automatically or not when it is powered on.
|
|
|
|
* @return auto connect
|
|
|
|
*/
|
|
|
|
bool WiFiSTAClass::getAutoConnect()
|
|
|
|
{
|
|
|
|
bool autoConnect;
|
|
|
|
esp_wifi_get_auto_connect(&autoConnect);
|
|
|
|
return autoConnect;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wait for WiFi connection to reach a result
|
|
|
|
* returns the status reached or disconnect if STA is off
|
|
|
|
* @return wl_status_t
|
|
|
|
*/
|
|
|
|
uint8_t WiFiSTAClass::waitForConnectResult()
|
|
|
|
{
|
|
|
|
//1 and 3 have STA enabled
|
|
|
|
if((WiFiGenericClass::getMode() & WIFI_MODE_STA) == 0) {
|
|
|
|
return WL_DISCONNECTED;
|
|
|
|
}
|
|
|
|
int i = 0;
|
|
|
|
while(status() >= WL_DISCONNECTED && i++ < 100) {
|
|
|
|
delay(100);
|
|
|
|
}
|
|
|
|
return status();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the station interface IP address.
|
|
|
|
* @return IPAddress station IP
|
|
|
|
*/
|
|
|
|
IPAddress WiFiSTAClass::localIP()
|
|
|
|
{
|
|
|
|
tcpip_adapter_ip_info_t ip;
|
|
|
|
tcpip_adapter_get_ip_info(TCPIP_ADAPTER_IF_STA, &ip);
|
|
|
|
return IPAddress(ip.ip.addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the station interface MAC address.
|
|
|
|
* @param mac pointer to uint8_t array with length WL_MAC_ADDR_LENGTH
|
|
|
|
* @return pointer to uint8_t *
|
|
|
|
*/
|
|
|
|
uint8_t* WiFiSTAClass::macAddress(uint8_t* mac)
|
|
|
|
{
|
|
|
|
esp_wifi_get_mac(WIFI_IF_STA, mac);
|
|
|
|
return mac;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the station interface MAC address.
|
|
|
|
* @return String mac
|
|
|
|
*/
|
|
|
|
String WiFiSTAClass::macAddress(void)
|
|
|
|
{
|
|
|
|
uint8_t mac[6];
|
|
|
|
char macStr[18] = { 0 };
|
|
|
|
esp_wifi_get_mac(WIFI_IF_STA, mac);
|
|
|
|
|
|
|
|
sprintf(macStr, "%02X:%02X:%02X:%02X:%02X:%02X", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
|
|
|
|
return String(macStr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the interface subnet mask address.
|
|
|
|
* @return IPAddress subnetMask
|
|
|
|
*/
|
|
|
|
IPAddress WiFiSTAClass::subnetMask()
|
|
|
|
{
|
|
|
|
tcpip_adapter_ip_info_t ip;
|
|
|
|
tcpip_adapter_get_ip_info(TCPIP_ADAPTER_IF_STA, &ip);
|
|
|
|
return IPAddress(ip.netmask.addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the gateway ip address.
|
|
|
|
* @return IPAddress gatewayIP
|
|
|
|
*/
|
|
|
|
IPAddress WiFiSTAClass::gatewayIP()
|
|
|
|
{
|
|
|
|
tcpip_adapter_ip_info_t ip;
|
|
|
|
tcpip_adapter_get_ip_info(TCPIP_ADAPTER_IF_STA, &ip);
|
|
|
|
return IPAddress(ip.gw.addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the DNS ip address.
|
|
|
|
* @param dns_no
|
|
|
|
* @return IPAddress DNS Server IP
|
|
|
|
*/
|
|
|
|
IPAddress WiFiSTAClass::dnsIP(uint8_t dns_no)
|
|
|
|
{
|
|
|
|
ip_addr_t dns_ip = dns_getserver(dns_no);
|
|
|
|
return IPAddress(dns_ip.u_addr.ip4.addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return Connection status.
|
|
|
|
* @return one of the value defined in wl_status_t
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
wl_status_t WiFiSTAClass::status()
|
|
|
|
{
|
|
|
|
return WiFiSTAClass::_status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the current SSID associated with the network
|
|
|
|
* @return SSID
|
|
|
|
*/
|
|
|
|
String WiFiSTAClass::SSID() const
|
|
|
|
{
|
|
|
|
wifi_config_t conf;
|
|
|
|
esp_wifi_get_config(WIFI_IF_STA, &conf);
|
|
|
|
return String(reinterpret_cast<char*>(conf.sta.ssid));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the current pre shared key associated with the network
|
|
|
|
* @return psk string
|
|
|
|
*/
|
|
|
|
String WiFiSTAClass::psk() const
|
|
|
|
{
|
|
|
|
wifi_config_t conf;
|
|
|
|
esp_wifi_get_config(WIFI_IF_STA, &conf);
|
|
|
|
return String(reinterpret_cast<char*>(conf.sta.password));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the current bssid / mac associated with the network if configured
|
|
|
|
* @return bssid uint8_t *
|
|
|
|
*/
|
|
|
|
uint8_t* WiFiSTAClass::BSSID(void)
|
|
|
|
{
|
|
|
|
static uint8_t bssid[6];
|
|
|
|
wifi_config_t conf;
|
|
|
|
esp_wifi_get_config(WIFI_IF_STA, &conf);
|
|
|
|
memcpy(bssid, conf.sta.bssid, 6);
|
|
|
|
return reinterpret_cast<uint8_t*>(bssid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the current bssid / mac associated with the network if configured
|
|
|
|
* @return String bssid mac
|
|
|
|
*/
|
|
|
|
String WiFiSTAClass::BSSIDstr(void)
|
|
|
|
{
|
|
|
|
char mac[18] = { 0 };
|
|
|
|
wifi_config_t conf;
|
|
|
|
esp_wifi_get_config(WIFI_IF_STA, &conf);
|
|
|
|
sprintf(mac, "%02X:%02X:%02X:%02X:%02X:%02X", conf.sta.bssid[0], conf.sta.bssid[1], conf.sta.bssid[2], conf.sta.bssid[3], conf.sta.bssid[4], conf.sta.bssid[5]);
|
|
|
|
return String(mac);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the current network RSSI.
|
|
|
|
* @return RSSI value
|
|
|
|
*/
|
|
|
|
int32_t WiFiSTAClass::RSSI(void)
|
|
|
|
{
|
|
|
|
return 0;//wifi_station_get_rssi();
|
|
|
|
}
|
2017-01-05 23:54:46 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the station interface Host name.
|
|
|
|
* @return char array hostname
|
|
|
|
*/
|
|
|
|
const char * WiFiSTAClass::getHostname()
|
|
|
|
{
|
|
|
|
const char * hostname;
|
|
|
|
if(tcpip_adapter_get_hostname(TCPIP_ADAPTER_IF_STA, &hostname)){
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return hostname;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the station interface Host name.
|
|
|
|
* @param hostname pointer to const string
|
|
|
|
* @return true on success
|
|
|
|
*/
|
|
|
|
bool WiFiSTAClass::setHostname(const char * hostname)
|
|
|
|
{
|
|
|
|
return tcpip_adapter_set_hostname(TCPIP_ADAPTER_IF_STA, hostname) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable IPv6 on the station interface.
|
|
|
|
* @return true on success
|
|
|
|
*/
|
|
|
|
bool WiFiSTAClass::enableIpV6()
|
|
|
|
{
|
|
|
|
return tcpip_adapter_create_ip6_linklocal(TCPIP_ADAPTER_IF_STA) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the station interface IPv6 address.
|
|
|
|
* @return IPv6Address
|
|
|
|
*/
|
|
|
|
IPv6Address WiFiSTAClass::localIPv6()
|
|
|
|
{
|
|
|
|
static ip6_addr_t addr;
|
|
|
|
if(tcpip_adapter_get_ip6_linklocal(TCPIP_ADAPTER_IF_STA, &addr)){
|
|
|
|
return IPv6Address();
|
|
|
|
}
|
|
|
|
return IPv6Address(addr.addr);
|
|
|
|
}
|
2017-01-20 11:39:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
bool WiFiSTAClass::_smartConfigStarted = false;
|
|
|
|
bool WiFiSTAClass::_smartConfigDone = false;
|
|
|
|
|
|
|
|
|
|
|
|
bool WiFiSTAClass::beginSmartConfig() {
|
|
|
|
if (_smartConfigStarted) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!WiFi.mode(WIFI_STA)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
esp_err_t err;
|
|
|
|
err = esp_smartconfig_start(reinterpret_cast<sc_callback_t>(&WiFiSTAClass::_smartConfigCallback), 1);
|
|
|
|
if (err == ESP_OK) {
|
|
|
|
_smartConfigStarted = true;
|
|
|
|
_smartConfigDone = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WiFiSTAClass::stopSmartConfig() {
|
|
|
|
if (!_smartConfigStarted) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (esp_smartconfig_stop() == ESP_OK) {
|
|
|
|
_smartConfigStarted = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WiFiSTAClass::smartConfigDone() {
|
|
|
|
if (!_smartConfigStarted) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _smartConfigDone;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WiFiSTAClass::_smartConfigCallback(uint32_t st, void* result) {
|
|
|
|
smartconfig_status_t status = (smartconfig_status_t) st;
|
|
|
|
if (status == SC_STATUS_LINK) {
|
|
|
|
wifi_sta_config_t *sta_conf = reinterpret_cast<wifi_sta_config_t *>(result);
|
|
|
|
|
|
|
|
esp_wifi_set_config(WIFI_IF_AP, (wifi_config_t *)sta_conf);
|
|
|
|
esp_wifi_disconnect();
|
|
|
|
esp_wifi_connect();
|
|
|
|
|
|
|
|
_smartConfigDone = true;
|
|
|
|
} else if (status == SC_STATUS_LINK_OVER) {
|
|
|
|
WiFi.stopSmartConfig();
|
|
|
|
}
|
|
|
|
}
|