5502879a5b
This is very much still work in progress and much more will change before the final 2.0.0 Some APIs have changed. New libraries have been added. LittleFS included. Co-authored-by: Seon Rozenblum <seonr@3sprockets.com> Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com> Co-authored-by: geeksville <kevinh@geeksville.com> Co-authored-by: Mike Dunston <m_dunston@comcast.net> Co-authored-by: Unexpected Maker <seon@unexpectedmaker.com> Co-authored-by: Seon Rozenblum <seonr@3sprockets.com> Co-authored-by: microDev <70126934+microDev1@users.noreply.github.com> Co-authored-by: tobozo <tobozo@users.noreply.github.com> Co-authored-by: bobobo1618 <bobobo1618@users.noreply.github.com> Co-authored-by: lorol <lorolouis@gmail.com> Co-authored-by: geeksville <kevinh@geeksville.com> Co-authored-by: Limor "Ladyada" Fried <limor@ladyada.net> Co-authored-by: Sweety <switi.mhaiske@espressif.com> Co-authored-by: Loick MAHIEUX <loick111@gmail.com> Co-authored-by: Larry Bernstone <lbernstone@gmail.com> Co-authored-by: Valerii Koval <valeros@users.noreply.github.com> Co-authored-by: 快乐的我531 <2302004040@qq.com> Co-authored-by: chegewara <imperiaonline4@gmail.com> Co-authored-by: Clemens Kirchgatterer <clemens@1541.org> Co-authored-by: Aron Rubin <aronrubin@gmail.com> Co-authored-by: Pete Lewis <601236+lewispg228@users.noreply.github.com>
309 lines
8.7 KiB
C++
309 lines
8.7 KiB
C++
/*
|
|
ESP8266WiFiScan.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 "WiFiScan.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.h>
|
|
#include <esp32-hal.h>
|
|
#include <lwip/ip_addr.h>
|
|
#include "lwip/err.h"
|
|
}
|
|
|
|
static const char * cipher_str(int cipher)
|
|
{
|
|
switch (cipher) {
|
|
case WIFI_CIPHER_TYPE_NONE:
|
|
return ("NONE");
|
|
break;
|
|
case WIFI_CIPHER_TYPE_WEP40:
|
|
return ("WEP40");
|
|
break;
|
|
case WIFI_CIPHER_TYPE_WEP104:
|
|
return ("WEP104");
|
|
break;
|
|
case WIFI_CIPHER_TYPE_TKIP:
|
|
return ("TKIP");
|
|
break;
|
|
case WIFI_CIPHER_TYPE_CCMP:
|
|
return ("CCMP");
|
|
break;
|
|
case WIFI_CIPHER_TYPE_TKIP_CCMP:
|
|
return ("TKIP_CCMP");
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return ("UNKNOWN");
|
|
}
|
|
|
|
bool WiFiScanClass::_scanAsync = false;
|
|
uint32_t WiFiScanClass::_scanStarted = 0;
|
|
uint32_t WiFiScanClass::_scanTimeout = 10000;
|
|
uint16_t WiFiScanClass::_scanCount = 0;
|
|
void* WiFiScanClass::_scanResult = 0;
|
|
|
|
/**
|
|
* Start scan WiFi networks available
|
|
* @param async run in async mode
|
|
* @param show_hidden show hidden networks
|
|
* @return Number of discovered networks
|
|
*/
|
|
int16_t WiFiScanClass::scanNetworks(bool async, bool show_hidden, bool passive, uint32_t max_ms_per_chan, uint8_t channel)
|
|
{
|
|
if(WiFiGenericClass::getStatusBits() & WIFI_SCANNING_BIT) {
|
|
return WIFI_SCAN_RUNNING;
|
|
}
|
|
|
|
WiFiScanClass::_scanTimeout = max_ms_per_chan * 20;
|
|
WiFiScanClass::_scanAsync = async;
|
|
|
|
WiFi.enableSTA(true);
|
|
|
|
scanDelete();
|
|
|
|
wifi_scan_config_t config;
|
|
config.ssid = 0;
|
|
config.bssid = 0;
|
|
config.channel = channel;
|
|
config.show_hidden = show_hidden;
|
|
if(passive){
|
|
config.scan_type = WIFI_SCAN_TYPE_PASSIVE;
|
|
config.scan_time.passive = max_ms_per_chan;
|
|
} else {
|
|
config.scan_type = WIFI_SCAN_TYPE_ACTIVE;
|
|
config.scan_time.active.min = 100;
|
|
config.scan_time.active.max = max_ms_per_chan;
|
|
}
|
|
if(esp_wifi_scan_start(&config, false) == ESP_OK) {
|
|
_scanStarted = millis();
|
|
if (!_scanStarted) { //Prevent 0 from millis overflow
|
|
++_scanStarted;
|
|
}
|
|
|
|
WiFiGenericClass::clearStatusBits(WIFI_SCAN_DONE_BIT);
|
|
WiFiGenericClass::setStatusBits(WIFI_SCANNING_BIT);
|
|
|
|
if(WiFiScanClass::_scanAsync) {
|
|
return WIFI_SCAN_RUNNING;
|
|
}
|
|
if(WiFiGenericClass::waitStatusBits(WIFI_SCAN_DONE_BIT, 10000)){
|
|
return (int16_t) WiFiScanClass::_scanCount;
|
|
}
|
|
}
|
|
return WIFI_SCAN_FAILED;
|
|
}
|
|
|
|
|
|
/**
|
|
* private
|
|
* scan callback
|
|
* @param result void *arg
|
|
* @param status STATUS
|
|
*/
|
|
void WiFiScanClass::_scanDone()
|
|
{
|
|
esp_wifi_scan_get_ap_num(&(WiFiScanClass::_scanCount));
|
|
if(WiFiScanClass::_scanCount) {
|
|
WiFiScanClass::_scanResult = new wifi_ap_record_t[WiFiScanClass::_scanCount];
|
|
if(!WiFiScanClass::_scanResult || esp_wifi_scan_get_ap_records(&(WiFiScanClass::_scanCount), (wifi_ap_record_t*)_scanResult) != ESP_OK) {
|
|
WiFiScanClass::_scanCount = 0;
|
|
}
|
|
}
|
|
WiFiScanClass::_scanStarted=0; //Reset after a scan is completed for normal behavior
|
|
WiFiGenericClass::setStatusBits(WIFI_SCAN_DONE_BIT);
|
|
WiFiGenericClass::clearStatusBits(WIFI_SCANNING_BIT);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param i specify from which network item want to get the information
|
|
* @return bss_info *
|
|
*/
|
|
void * WiFiScanClass::_getScanInfoByIndex(int i)
|
|
{
|
|
if(!WiFiScanClass::_scanResult || (size_t) i >= WiFiScanClass::_scanCount) {
|
|
return 0;
|
|
}
|
|
return reinterpret_cast<wifi_ap_record_t*>(WiFiScanClass::_scanResult) + i;
|
|
}
|
|
|
|
/**
|
|
* called to get the scan state in Async mode
|
|
* @return scan result or status
|
|
* -1 if scan not fin
|
|
* -2 if scan not triggered
|
|
*/
|
|
int16_t WiFiScanClass::scanComplete()
|
|
{
|
|
if (WiFiScanClass::_scanStarted && (millis()-WiFiScanClass::_scanStarted) > WiFiScanClass::_scanTimeout) { //Check is scan was started and if the delay expired, return WIFI_SCAN_FAILED in this case
|
|
WiFiGenericClass::clearStatusBits(WIFI_SCANNING_BIT);
|
|
return WIFI_SCAN_FAILED;
|
|
}
|
|
|
|
if(WiFiGenericClass::getStatusBits() & WIFI_SCAN_DONE_BIT) {
|
|
return WiFiScanClass::_scanCount;
|
|
}
|
|
|
|
if(WiFiGenericClass::getStatusBits() & WIFI_SCANNING_BIT) {
|
|
return WIFI_SCAN_RUNNING;
|
|
}
|
|
|
|
return WIFI_SCAN_FAILED;
|
|
}
|
|
|
|
/**
|
|
* delete last scan result from RAM
|
|
*/
|
|
void WiFiScanClass::scanDelete()
|
|
{
|
|
WiFiGenericClass::clearStatusBits(WIFI_SCAN_DONE_BIT);
|
|
if(WiFiScanClass::_scanResult) {
|
|
delete[] reinterpret_cast<wifi_ap_record_t*>(WiFiScanClass::_scanResult);
|
|
WiFiScanClass::_scanResult = 0;
|
|
WiFiScanClass::_scanCount = 0;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* loads all infos from a scanned wifi in to the ptr parameters
|
|
* @param networkItem uint8_t
|
|
* @param ssid const char**
|
|
* @param encryptionType uint8_t *
|
|
* @param RSSI int32_t *
|
|
* @param BSSID uint8_t **
|
|
* @param channel int32_t *
|
|
* @return (true if ok)
|
|
*/
|
|
bool WiFiScanClass::getNetworkInfo(uint8_t i, String &ssid, uint8_t &encType, int32_t &rssi, uint8_t* &bssid, int32_t &channel)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return false;
|
|
}
|
|
ssid = (const char*) it->ssid;
|
|
encType = it->authmode;
|
|
rssi = it->rssi;
|
|
bssid = it->bssid;
|
|
channel = it->primary;
|
|
return true;
|
|
}
|
|
|
|
|
|
/**
|
|
* Return the SSID discovered during the network scan.
|
|
* @param i specify from which network item want to get the information
|
|
* @return ssid string of the specified item on the networks scanned list
|
|
*/
|
|
String WiFiScanClass::SSID(uint8_t i)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return String();
|
|
}
|
|
return String(reinterpret_cast<const char*>(it->ssid));
|
|
}
|
|
|
|
|
|
/**
|
|
* Return the encryption type of the networks discovered during the scanNetworks
|
|
* @param i specify from which network item want to get the information
|
|
* @return encryption type (enum wl_enc_type) of the specified item on the networks scanned list
|
|
*/
|
|
wifi_auth_mode_t WiFiScanClass::encryptionType(uint8_t i)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return WIFI_AUTH_OPEN;
|
|
}
|
|
return it->authmode;
|
|
}
|
|
|
|
/**
|
|
* Return the RSSI of the networks discovered during the scanNetworks
|
|
* @param i specify from which network item want to get the information
|
|
* @return signed value of RSSI of the specified item on the networks scanned list
|
|
*/
|
|
int32_t WiFiScanClass::RSSI(uint8_t i)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return 0;
|
|
}
|
|
return it->rssi;
|
|
}
|
|
|
|
|
|
/**
|
|
* return MAC / BSSID of scanned wifi
|
|
* @param i specify from which network item want to get the information
|
|
* @return uint8_t * MAC / BSSID of scanned wifi
|
|
*/
|
|
uint8_t * WiFiScanClass::BSSID(uint8_t i)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return 0;
|
|
}
|
|
return it->bssid;
|
|
}
|
|
|
|
/**
|
|
* return MAC / BSSID of scanned wifi
|
|
* @param i specify from which network item want to get the information
|
|
* @return String MAC / BSSID of scanned wifi
|
|
*/
|
|
String WiFiScanClass::BSSIDstr(uint8_t i)
|
|
{
|
|
char mac[18] = { 0 };
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return String();
|
|
}
|
|
sprintf(mac, "%02X:%02X:%02X:%02X:%02X:%02X", it->bssid[0], it->bssid[1], it->bssid[2], it->bssid[3], it->bssid[4], it->bssid[5]);
|
|
return String(mac);
|
|
}
|
|
|
|
int32_t WiFiScanClass::channel(uint8_t i)
|
|
{
|
|
wifi_ap_record_t* it = reinterpret_cast<wifi_ap_record_t*>(_getScanInfoByIndex(i));
|
|
if(!it) {
|
|
return 0;
|
|
}
|
|
return it->primary;
|
|
}
|
|
|