Difference between revisions of "Mixly Block Category - Ethernet"
(→Connect to Host) |
(→Client Connected) |
||
Line 22: | Line 22: | ||
=Client Connected= | =Client Connected= | ||
+ | Returns whether or not the client is connected. Note that a client is considered connected if the connection has been closed but there is still unread data. | ||
+ | |||
+ | |||
+ | Read more here: https://www.arduino.cc/en/Reference/ClientConnected | ||
+ | |||
=Client Availability= | =Client Availability= | ||
=Client Read= | =Client Read= |
Revision as of 19:49, 24 February 2017
Allow an Arduino / Microduino board to connect to the internet.
Read more here: https://www.arduino.cc/en/Reference/Ethernet
Contents
Begin Ethernet
Initializes the ethernet library and network settings.
Read more here: https://www.arduino.cc/en/Reference/EthernetBegin
localIP
Returns the IP of this device once connected to the network. Can be used to determine the IP of the device.
Read more here: https://www.arduino.cc/en/Reference/EthernetLocalIP
Connect to Host
Connects to a specified IP address and port. The return value indicates success or failure. Also supports DNS lookups when using a domain name.
Read more here: https://www.arduino.cc/en/Reference/ClientConnect
Client Connected
Returns whether or not the client is connected. Note that a client is considered connected if the connection has been closed but there is still unread data.
Read more here: https://www.arduino.cc/en/Reference/ClientConnected
Client Availability
Client Read
Client Stop
Client Print
- Without Newline
- With Newline