WiFi - Set up Server to communicate

Materials

  • AmebaD [AMB21 / AMB22 / AMB23 / BW16] x 1

  • Laptop(Make sure it is connected to the same network domain as Ameba, and tcp tools are installed.)

Example

In this example, we first connect Ameba to WiFi, then we use Ameba as server to communicate with client.

First, we make sure the correct Ameba development board is set in “Tools” → “Board”

Then, open the Simple WiFi Server example in “File” “Examples” “WiFi” “SimpleServerWiFi”

1

In the sample code, modify the highlighted parameters and enter the ssid and password for your WiFi connection.

2

Next, upload the code, then press the reset button on Ameba. At this moment, you will see the connection information is displayed in the console.

Next, we use the socket tool in the laptop to be the client and connect to the IP address of the Ameba board shown in the connection information at port 5000. (Note: The socket tool we used in this example is “sokit”)

3

Click on the “Client” tab to choose the client mode, specify the IP and port of the server, then click “TCP Connect”.

If the connection is established successfully, the server shows a message: “A client connected to this Server”, and the IP and port of the connected client.

In this example, when the client and server are connected and the client sends a string to Ameba server, the Ameba server returns the identical string back to the client.

4

The string sent to server is returned and showed at the client side.

Code Reference

Use WiFi.begin() to establish WiFi connection;
To get the information of a WiFi connection:
Use WiFi.SSID() to get SSID of the current connected network.
Use WiFi.RSSI() to get the signal strength of the connection.
Use WiFi.localIP() to get the Ameba WiFi shield’s IP address.
Create server and transmitting data:
Use Server(port) to create a server that listens on the specified port.
Use server.begin() to tell the server to begin listening for incoming connections.
Use server.available() to get a client that is connected to the server and has data available for reading.
Use client.read() to read the next byte received from the server.
Use client.write() to write data to the server.
Use client.stop() to disconnect from the server.