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


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


说明

获取WiFi shield 的子网掩码

用法

WiFi.subnet();

参数

返回

屏蔽的子网掩码

示例

#include <WiFi101.h>
int status = WL_IDLE_STATUS;     // the Wifi radio's status

//SSID of your network
char ssid[] = "yourNetwork";
//password of your WPA Network
char pass[] = "secretPassword";

IPAddress ip;
IPAddress subnet;
IPAddress gateway;

void setup()
{
  WiFi.begin(ssid, pass);

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

    // print your subnet mask:
    subnet = WiFi.subnetMask();
    Serial.print("NETMASK: ");
    Serial.println();

  }
}

void loop () {
}
 

相关用法


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