ESP8266 Client-Server Wi-Fi Communication Between Two Boards (NodeMCU)

Содержание

Learn how to establish a Wi-Fi communication (HTTP) between two ESP8266 NodeMCU boards to exchange data without the need to connect to the internet (you don’t need a router).

You’re going to set one ESP8266 as an Access Point (Server) and another ESP8266 as a Station (Client). Then, the server and the client will exchange data (sensor readings) via HTTP requests. We’ll program the ESP8266 boards using Arduino IDE.

ESP8266 Client-Server Wi-Fi Communication Between Two Boards

In this example, we’ll send BME280 sensor readings from one board to the other. The receiver will display the readings on an OLED display.

If you have an ESP32 board, you can read this dedicated guide: ESP32 Client-Server Wi-Fi Communication.

Watch the Video Demonstration

To see how the project works, you can watch the following video demonstration:

Project Overview

To better understand how everything works, take a look at the following diagram.

ESP8266 Client-Server Wi-Fi Communication Between Project overview

  • The ESP8266 server creates its own wireless network (ESP8266 Soft-Access Point). So, other Wi-Fi devices can connect to that network (SSID: ESP8266-Access-Point, Password: 123456789).
  • The ESP8266 client is set as a station. So, it can connect to the ESP8266 server wireless network.
  • The client can make HTTP GET requests to the server to request sensor data or any other information. It just needs to use the IP address of the server to make a request on a certain route: /temperature , /humidity or /pressure .
  • The server listens for incoming requests and sends an appropriate response with the readings.
  • The client receives the readings and displays them on the OLED display.

As an example, the ESP8266 client requests temperature, humidity and pressure to the server by making requests on the server IP address followed by /temperature , /humidity and /pressure , respectively (HTTP GET).

The ESP8266 server is listening on those routes and when a request is made, it sends the corresponding sensor readings via HTTP response.

Parts Required

Parts required for ESP8266 Client-Server Communication

For this tutorial, you need the following parts:

You can use the preceding links or go directly to MakerAdvisor.com/tools to find all the parts for your projects at the best price!

Installing Libraries

For this tutorial you need to install the following libraries:

Asynchronous Web Server Libraries

We’ll use the following libraries to handle HTTP request:

These libraries are not available to install through the Library Manager. So, you need to unzip the libraries and move them to the Arduino IDE installation libraries folder.

Alternatively, you can go to Sketch Include Library Add .ZIP library… and select the libraries you’ve just downloaded.

BME280 Libraries

The following libraries can be installed through the Arduino Library Manager. Go to Sketch Include Library Manage Libraries and search for the library name.

I2C SSD1306 OLED Libraries

To interface with the OLED display you need the following libraries. These can be installed through the Arduino Library Manager. Go to Sketch Include Library Manage Libraries and search for the library name.

#1 ESP8266 Server (Access Point)

ESP8266 Server with BME280 temperature humidity pressure

The ESP8266 server is an Access Point (AP), that listens for requests on the /temperature , /humidity and /pressure URLs. When it gets requests on those URLs, it sends the latest BME280 sensor readings.

For testing, we’re using a BME280 sensor, but you can use any other sensor by modifying a few lines of code (for example: DHT11/DHT22 or DS18B20).

Schematic Diagram

Wire the ESP8266 to the BME280 sensor as shown in the following schematic diagram.

ESP8266 BME280 Wiring Schematic Diagram

BME280 ESP8266
VIN/VCC 3.3V
GND GND
SCL GPIO 5 (D1)
SDA GPIO 4 (D2)

Arduino Sketch for #1 ESP8266 Server

Upload the following code to your board.

How the code works

Start by including the necessary libraries. Include the ESP8266WiFi.h library and the ESPAsyncWebServer.h library to handle incoming HTTP requests.

Include the following libraries to interface with the BME280 sensor.

In the following variables, define your access point network credentials:

We’re setting the SSID to ESP8266-Access-Point , but you can give it any other name. You can also change the password. By default, its set to 123456789 .

Create an instance for the BME280 sensor called bme .

Create an asynchronous web server on port 80.

Then, create three functions that return the temperature, humidity, and pressure as String variables.

In the setup() , initialize the Serial Monitor for demonstration purposes.

Set your ESP8266 as an access point with the SSID name and password defined earlier.

Then, handle the routes where the ESP8266 will be listening for incoming requests.

For example, when the ESP8266 server receives a request on the /temperature URL, it sends the temperature returned by the readTemp() function as a char (that’s why we use the c_str() method.

The same happens when the ESP receives a request on the /humidity and /pressure URLs.

The following lines initialize the BME280 sensor.

Finally, start the server.

Because this is an asynchronous web server, there’s nothing in the loop() .

Testing the ESP8266 Server

Upload the code to your board and open the Serial Monitor. You should get something as follows:

Testing the ESP8266 Server Serial Monitor Arduino IDE

This means that the access point was set successfully.

Now, to make sure it is listening for temperature, humidity and pressure requests, you need to connect to its network.

In your smartphone, go to the Wi-Fi settings and connect to the ESP8266-Access-Point. The password is 123456789.

ESP8266 Server Access Point AP Connection

While connected to the access point, open your browser and type 192.168.4.1/temperature

You should get the temperature value in your browser:

ESP8266 Server Access Point AP Test request temperature

Try this URL path for the humidity 192.168.4.1/humidity :

ESP8266 Server Access Point AP Test request humidity

Finally, go to 192.168.4.1/pressure URL:

ESP8266 Server Access Point AP Test request pressure

If you’re getting valid readings, it means that everything is working properly. Now, you need to prepare the other ESP8266 board (client) to make those requests for you and display them on the OLED display.

#2 ESP8266 Client (Station)

ESP8266 Client Receive Readings via HTTP GET Request BME280

The ESP8266 Client is a Wi-Fi station that connects to the ESP8266 Server. The client requests the temperature, humidity and pressure from the server by making HTTP GET requests on the /temperature , /humidity , and /pressure URL routes. Then, it displays the readings on the OLED display.

Schematic Diagram

Connect an OLED display to your ESP8266 board as shown in the following schematic diagram.

ESP32 OLED Display Wiring Schematic Diagram

Pin ESP8266
Vin 3.3V
GND GND
SCL GPIO 5 (D1)
SDA GPIO 4 (D2)

Arduino Sketch for #2 ESP8266 Client

Upload the following code to the other ESP8266 (the client):

How the code works

Include the necessary libraries for the Wi-Fi connection and for making HTTP requests:

You need to create a WiFiMulti instance.

Insert the ESP8266 server network credentials. If you’ve changed the default network credentials in the ESP8266 server, you should change them here to match.

Then, save the URLs where the client will be making HTTP requests. The ESP8266 server has the 192.168.4.1 IP address, and we’ll be making requests on the /temperature , /humidity and /pressure URLs.

Include the libraries to interface with the OLED display:

Set the OLED display size:

Create a display object with the size you’ve defined earlier and with I2C communication protocol.

Initialize string variables that will hold the temperature, humidity and pressure readings retrieved by the server.

Set the time interval between each request. By default, it’s set to 5 seconds, but you can change it to any other interval.

In the setup() , initialize the OLED display:

Note: if your OLED display is not working, check its I2C address using an I2C scanner sketch and change the code accordingly.

Connect the ESP8266 client to the ESP8266 server network.

In the loop() is where we make the HTTP GET requests. We’ve created a function called httpGETRequest() that accepts as argument the URL path where we want to make the request and returns the response as a String .

You can use the next function in your projects to simplify your code:

We use that function to get the temperature, humidity and pressure readings from the server.

Print those readings in the Serial Monitor for debugging.

Then, display the temperature in the OLED display:

Finally, the pressure reading:

We use timers instead of delays to make a request every x number of seconds. That’s why we have the previousMillis , currentMillis variables and use the millis() function. We have an article that shows the difference between timers and delays that you might find useful (or read ESP8266 Timers).

Upload the sketch to #2 ESP8266 (client) to test if everything is working properly.

Testing the ESP8266 Client

Having both boards fairly close and powered, you’ll see that ESP #2 is receiving new temperature, humidity and pressure readings every 5 seconds from ESP #1.

This is what you should see on the ESP8266 Client Serial Monitor.

Testing the ESP8266 Client Serial Monitor Arduino IDE

The sensor readings are also displayed in the OLED.

ESP8266 Client Server Communication example data exchange for sensor readings

That’s it! Your two ESP8266 boards are talking with each other.

Wrapping Up

In this tutorial we’ve shown you how to send data from one ESP8266 board to the other using HTTP requests. This project can be very useful if you need to setup a wireless communication between two boards or more and you don’t have a router nearby.

For demonstration purposes, we’ve shown how to send BME280 sensor readings, but you can use any other sensor or send any other data. Other recommended sensors:

We have a similar tutorial for the ESP32 that you might find useful:

We hope you liked this tutorial. We’re preparing more tutorials like these. So, stay tuned and subscribe to our blog!


Источник: randomnerdtutorials.com