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


Arduino Ethernet - server.write()用法及代码示例

说明

将数据写入连接到服务器的所有客户端。此数据作为一个字节或一系列字节发送。

用法

server.write(val)
server.write(buf, len)

参数

  • val:作为单个字节(字节或字符)发送的值

  • buf:作为一系列字节(字节或字符)发送的数组

  • len:缓冲区的长度

返回

  • byte
  • write() 返回写入的字节数。没有必要阅读此内容。

示例

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

// network configuration.  gateway and subnet are optional.

 // 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 == true) {
    // 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.write()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。