Hide minor edits - Show changes to markup
Ethernet : Client class
Ethernet : Clase Client
Print data, followed by a newline, to the server a client is connected to. Prints numbers as a sequence of digits, each an ASCII character (e.g. the number 123 is sent as the three characters '1', '2', '3').
Imprime datos al servidor seguino de una línea nueva (newline), por parte del cliente conectado. Imprime números como una secuencia de dígitos ,cada dígito será un caracter ASCII (ej. el número 123 se envía como tres dígitos '1', '2', '3').
data (optional): the data to print (char, byte, int, long, or string)
BASE (optional): the base in which to print numbers: BIN for binary (base 2), DEC for decimal (base 10), OCT for octal (base 8), HEX for hexadecimal (base 16).
data (opcional): los datos a imprimir (char, byte, int, long, or string)
BASE (opcional): La base en la que se imprimirá el número: BIN para binario (base 2), DEC para decimal (base 10), OCT para octal (base 8), HEX para hexadecimal (base 16).
Ethernet : Server class
Ethernet : Client class
Ethernet : Server class
Print data, followed by a newline, to the server a client is connected to. Prints numbers as a sequence of digits, each an ASCII character (e.g. the number 123 is sent as the three characters '1', '2', '3').
client.println()
client.println(data)
client.print(data, BASE)
data (optional): the data to print (char, byte, int, long, or string)
BASE (optional): the base in which to print numbers: BIN for binary (base 2), DEC for decimal (base 10), OCT for octal (base 8), HEX for hexadecimal (base 16).