WiFiServer()
描述
創建一個伺服端,這個伺服端會監聽指定的埠是否有連線的請求。
語法
WiFiServer server(port);
參數
port
:要監聽的埠編號,型態為 int
回傳
無回傳值
範例
#include <WiFi.h> char ssid[] = "myNetwork"; // 無線網路的 SSID char pass[] = "myPassword"; // 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.