EthernetServer()

[Ethernet]

説明

Create a server that listens for incoming connections on the specified port.

Syntax

EthernetServer(port);

Parameters

port: the port to listen on (int)

Returns

None

Example

#include <Ethernet.h>
 
// network configuration.  gateway and subnet are optional.
 
// the IP address:
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(NULL, 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 == true) {
    // read bytes from the incoming client and write them back
    // to any clients connected to the server:
    server.write(client.read());
  }
}

Libraries Reference Home

86Duino のリファレンスのテキストは Arduino レファレンス を編集したもので、 Creative Commons Attribution-ShareAlike 3.0 License下でライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。

コメントする

上部へスクロール