write()


Описание

Записывает данные всех клиентов, подключенных к серверу.
Эти данные отправляются как байты или серии байтов.

Синтаксис

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

Параметры

val - значение для отправки в виде одиночного байта (byte или char)
buf - массив для отправки в виде последовательных байтов (byte или char)
len - длина буфера

Возврат значений

Возвращает int, представляющий количество записанных байтов.

Пример

#include <SPI.h>
#include <Phpoc.h>

PhpocServer server(23);
boolean alreadyConnected = false; // whether or not the client was connected previously

void setup() {
  Serial.begin(9600);
  while(!Serial)
    ;

  Phpoc.begin(PF_LOG_SPI | PF_LOG_NET);
  //Phpoc.begin();

  server.begin();

  Serial.print("Chat server address : ");
  Serial.println(Phpoc.localIP());  
}

void loop() {
  // wait for a new client:
  PhpocClient client = server.available();

  // when the client sends the first byte, say hello:
  if (client) {
    if (!alreadyConnected) {
      // clear out the transmission buffer:
      client.flush();
      Serial.println("We have a new client");
      client.println("Hello, client!");
      alreadyConnected = true;
    }

    if (client.available() > 0) {
      // read the bytes incoming from the client:
      char thisChar = client.read();
      // echo the bytes back to the client:
      server.write(thisChar);
      // echo the bytes to the server as well:
      Serial.write(thisChar);
    }
  }
}