资源简介
该代码演示ESP8266(Arduino)如何在AP模式下获取设备列表,如何响应设备接入和断开事件。
代码片段和文件信息
#include “stainfo.h“
#include
#include
#include
static inline void _getStationList(std::vector& stalist)
{
struct station_info *stat_info;
stalist.clear();
for (stat_info = wifi_softap_get_station_info(); stat_info; stat_info = STAILQ_NEXT(stat_info next))
stalist.emplace_back(stat_info);
wifi_softap_free_station_info();
sort(stalist.begin() stalist.end());
}
void StationInfoManager::begin(notify_func_t notify_func)
{
_getStationList(stalist);
this->notify_func = notify_func;
}
void StationInfoManager::loop()
{
std::vector stalist_old = std::move(stalist);
_getStationList(stalist);
std::vector staconnect stadisconnect;
std::set_difference(stalist.begin()stalist.end()stalist_old.begin()stalist_old.end()std::inserter(staconnect staconnect.begin()));
std::set_difference(stalist_old.begin()stalist_old.end()stalist.begin()stalist.end()std::ins
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-10-23 00:33 listenap\
文件 703 2016-10-18 22:55 listenap\cppstream.h
文件 935 2016-10-23 00:28 listenap\listenap.ino
文件 2155 2016-10-23 00:32 listenap\printer.h
文件 1292 2016-10-23 00:29 listenap\stainfo.cpp
文件 745 2016-10-23 00:30 listenap\stainfo.h
- 上一篇:multiCCL_f
- 下一篇:毕业论文——设计机械手的装配图
相关资源
- 图解西门子S71200PLC入门到实践(清晰
- AI拓客商家联盟V2.1.3前端+后端.rar
- echarts大数据领导仓demo.rar
- [C51单片机开发工具Keil.UV4].Keil.C51.V9
- Deep_Learning_2016.pdf
- zw_Classification1.zip
- Griffiths-IntroductiontoElectrodynamics4thEdit
- ParaViewTutorial.pdf
- xyisv_10236804.zip
- 计算机图形学第4版高清电子书.pdf
- 《多粒度知识获取与不确定性度量》
- 华成英模电课件.zip
- 70d0cd041f738f12db575d3b46e97582.pdf
- OfficeTabEnterprise13.1.zip
- wxu998.rar
- PowerDesigner16.5汉化文件.rar
- jsgis.zip
- PinyinIME(关键代码写了注释).zip
- 锁相环设计、仿真与应用第5版中.pd
- novelOnLine.zip
- SingleSensorImagingMethodsandApplicationsforDi
- ControlSystemsEngineering7th(NormanS.Nise)
- ModernControlSystems13th(RichardC.Dorf).ra
- VectorMagic_1.15pojie.rar
- complexityoflattice__problems.pdf
- xnby_883749.zip
- TOGAF培训讲义-周金根.pdf
- OS12.2驱动,手机虚拟定位软件,Loca
- 大话系列-大话数据结构(pdf高清版)
- 梁宁产品经理思维30讲.pdf
评论
共有 条评论