begin()

描述

启动伺服端,让伺服端开始监听连线请求。

语法


server.begin()

参数

无参数

回传

无回传值

范例

#include <WiFi.h>

char ssid[] = "lamaison";          // 无线网路的 SSID
char pass[] = "tenantaccess247";   // WPA 的密码
int status = WL_IDLE_STATUS;

WiFiServer server(80);

void setup() {
  // 初始化序列埠
  Serial.begin(9600);
  Serial.println("Attempting to connect to WPA network...");
  Serial.print("SSID: ");
  Serial.println(ssid);

  status = WiFi.begin(ssid, pass);
  if ( status != WL_CONNECTED) { 
    Serial.println("Couldn't get a wifi connection");
    while(true);
  } 
  else {
    server.begin();
    Serial.print("Connected to wifi. My address:");
    IPAddress myAddress = WiFi.localIP();
    Serial.println(myAddress);

  }
}


void loop() {

}

函式库参考主页面

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.