当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Arduino WiFi101 - WiFi.scanNetworks()用法及代码示例


说明

扫描可用的WiFi 网络并返回发现的号码

用法

WiFi.scanNetworks();

参数

返回

字节:发现的网络数

示例

#include <SPI.h>
#include <WiFi101.h>

char ssid[] = "yourNetwork";     // the name of your network
int status = WL_IDLE_STATUS;     // the Wifi radio's status

byte mac[6];                     // the MAC address of your Wifi shield


void setup()
{
 Serial.begin(9600);

 status = WiFi.begin(ssid);

 if ( status != WL_CONNECTED) {
    Serial.println("Couldn't get a wifi connection");
    while(true);
  }
  // if you are connected, print your MAC address:
  else {

  Serial.println("** Scan Networks **");
  byte numSsid = WiFi.scanNetworks();

  Serial.print("SSID List:");
  Serial.println(numSsid);
  }
}

void loop () {}

相关用法


注:本文由纯净天空筛选整理自arduino.cc大神的英文原创作品 WiFi101 - WiFi.scanNetworks()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。