說明
將數據寫入連接到服務器的所有客戶端。此數據作為一個字節或一係列字節發送。
用法
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 Ethernet - server.begin()用法及代碼示例
- Arduino Ethernet - server.available()用法及代碼示例
- Arduino Ethernet - server.accept()用法及代碼示例
- Arduino Ethernet - EthernetUDP.parsePacket()用法及代碼示例
- Arduino Ethernet - Ethernet.setRetransmissionTimeout()用法及代碼示例
- Arduino Ethernet - Ethernet.MACAddress()用法及代碼示例
- Arduino Ethernet - Ethernet.hardwareStatus()用法及代碼示例
- Arduino Ethernet - client.setConnectionTimeout()用法及代碼示例
- Arduino Ethernet - client.connected()用法及代碼示例
- Arduino Ethernet - EthernetUDP.beginPacket()用法及代碼示例
- Arduino Ethernet - EthernetUDP.available()用法及代碼示例
- Arduino Ethernet - Ethernet.localIP()用法及代碼示例
- Arduino Ethernet - EthernetUDP.read()用法及代碼示例
- Arduino Ethernet - EthernetUDP.endPacket()用法及代碼示例
- Arduino Ethernet - Ethernet.setDnsServerIP()用法及代碼示例
- Arduino Ethernet - client.remotePort()用法及代碼示例
- Arduino Ethernet - EthernetUDP.begin()用法及代碼示例
- Arduino Ethernet - Ethernet.init()用法及代碼示例
- Arduino Ethernet - Ethernet.setMACAddress()用法及代碼示例
- Arduino Ethernet - if(server)用法及代碼示例
- Arduino Ethernet - client.available()用法及代碼示例
- Arduino Ethernet - UDP.remotePort()用法及代碼示例
- Arduino Ethernet - EthernetServer()用法及代碼示例
- Arduino Ethernet - Ethernet.setSubnetMask()用法及代碼示例
- Arduino Ethernet - UDP.remoteIP()用法及代碼示例
注:本文由純淨天空篩選整理自arduino.cc大神的英文原創作品 Ethernet - server.write()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。