當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Arduino Ethernet - server.available()用法及代碼示例

說明

獲取連接到服務器並具有可供讀取的數據的客戶端。當返回的客戶端對象超出範圍時,連接仍然存在;你可以通過調用client.stop()來關閉它。

用法

server.available()

參數

None

返回

  • 一個客戶對象;如果沒有客戶端可以讀取數據,則此對象將在 if-statement 中評估為 false(請參見下麵的示例)

示例

#include <Ethernet.h>
#include <SPI.h>

// the media access control (ethernet hardware) address for the shield:
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };  
//the IP address for the shield:
byte ip[] = { 10, 0, 0, 177 };    
// the router's gateway address:
byte gateway[] = { 10, 0, 0, 1 };
// the subnet:
byte subnet[] = { 255, 255, 0, 0 };


// telnet defaults to port 23
EthernetServer server = EthernetServer(23);

void setup()
{
  // initialize the ethernet device
  Ethernet.begin(mac, ip, gateway, subnet);

  // start listening for clients
  server.begin();
}

void loop()
{
  // if an incoming client connects, there will be bytes available to read:
  EthernetClient client = server.available();
  if (client) {
    // read bytes from the incoming client and write them back
    // to any clients connected to the server:
    server.write(client.read());
  }
}

相關用法


注:本文由純淨天空篩選整理自arduino.cc大神的英文原創作品 Ethernet - server.available()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。