Esp32 From Anywhere in The World
Esp32 From Anywhere in The World
In this project, you’ll create a web page that displays sensor readings in a plot that you can access from anywhere in the
world. In summary, you’ll build an ESP32 or ESP8266 client that makes a request to a PHP script to publish sensor
readings in a MySQL database.
As an example, we’ll be using a BME280 sensor connected to an ESP board. You can modify the code provided to send
readings from a different sensor or use multiple boards.
PHP script to insert data into MySQL database and display it on a web page
ESP32/ESP8266 Insert Data into MySQL Database using PHP and Arduino IDE
To see how the project works, you can watch the following video demonstration:
The goal of this project is to have your own domain name and hosting account that allows you to store sensor readings
from the ESP32 or ESP8266. You can visualize the readings from anywhere in the world by accessing your own server
domain. Here’s a high level overview of the project:
I recommend using one of the following hosting services that can handle all the project requirements:
Bluehost (user-friendly with cPanel): free domain name when you sign up for the 3-year plan. I recommend choosing the
unlimited websites option;
Digital Ocean: Linux server that you manage through a command line. I only recommended this option for advanced
users.
Those two services are the ones that I use and personally recommend, but you can use any other hosting service. Any
hosting service that offers PHP and MySQL will work with this tutorial. If you don’t have a hosting account, I recommend
signing up for Bluehost.
When buying a hosting account, you’ll also have to purchase a domain name. This is what makes this project interesting:
you’ll be able to go your domain name (http://example.com) and see your ESP readings.
If you like our projects, you might consider signing up to one of the recommended hosting services, because you’ll be
supporting our work.
Note: you can also run a LAMP (Linux, Apache, MySQL, PHP) server on a Raspberry Pi to access data in your local
network. However, the purpose of this tutorial is to publish readings in your own domain name that you can access from
anywhere in the world. This allows you to easily access your ESP readings without relying on a third-party IoT platform.
After signing up for a hosting account and setting up a domain name, you can login to your cPanel or similar dashboard.
After that, follow the next steps to create your database, username, password and SQL table.
1. Type “database” in the search bar and select “MySQL Database Wizard”.
2. Enter your desired Database name. In my case, the database name is esp_data. Then, press the “Next Step” button:
Note: later you’ll have to use the database name with the prefix that your host gives you (my database prefix in the
screenshot above is blurred). I’ll refer to it as example_esp_data from now on.
3. Type your Database username and set a password. You must save all those details, because you’ll need them later to
establish a database connection with your PHP code.
That’s it! Your new database and user were created successfully. Now, save all your details because you’ll need them
later:
Username: example_esp_board
After creating your database and user, go back to cPanel dashboard and search for “phpMyAdmin”.
In the left sidebar, select your database name example_esp_data and open the “SQL” tab.
Important: make sure you’ve opened the example_esp_data database. Then, click the SQL tab. If you don’t follow these
exact steps and run the SQL query, you might create a table in the wrong database.
value1 VARCHAR(10),
value2 VARCHAR(10),
value3 VARCHAR(10),
Paste it in the SQL query field (highlighted with a red rectangle) and press the “Go” button to create your table:
After that, you should see your newly created table called Sensor in the example_esp_data database as shown in the
figure below:
If you’re using a hosting provider with cPanel, you can search for “File Manager”:
Then, select the public_html option and press the “+ File” button to create a new .php file.
Note: if you’re following this tutorial and you’re not familiar with PHP or MySQL, I recommend creating these exact files.
Otherwise, you’ll need to modify the ESP sketch provided with different URL paths.
Create a new file in /public_html with this exact name and extension: post-data.php
Edit the newly created file (post-data.php) and copy the following snippet:
<?php
/*
Rui Santos
The above copyright notice and this permission notice shall be included in all
*/
$servername = "localhost";
// REPLACE with your Database name
$dbname = "REPLACE_WITH_YOUR_DATABASE_NAME";
$username = "REPLACE_WITH_YOUR_USERNAME";
$password = "REPLACE_WITH_YOUR_PASSWORD";
// Keep this API Key value to be compatible with the ESP32 code provided in the project page. If you change this value,
the ESP32 sketch needs to match
$api_key_value = "tPmAT5Ab3j7F9";
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$api_key = test_input($_POST["api_key"]);
if($api_key == $api_key_value) {
$value1 = test_input($_POST["value1"]);
$value2 = test_input($_POST["value2"]);
$value3 = test_input($_POST["value3"]);
// Create connection
// Check connection
if ($conn->connect_error) {
VALUES ('" . $value1 . "', '" . $value2 . "', '" . $value3 . "')";
else {
$conn->close();
}
else {
else {
function test_input($data) {
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
Before saving the file, you need to modify the $dbname, $username and $password variables with your unique details:
$dbname = "example_esp_data";
$username = "example_esp_board";
$password = "YOUR_USER_PASSWORD";
After adding the database name, username and password, save the file and continue with this tutorial. If you try to
access your domain name in the next URL path, you’ll see the message:
http://example.com/post-data.php
Create another PHP file in the /public_html directory that will plot the database content in a chart on a web page. Name
your new file: esp-chart.php
Edit the newly created file (esp-chart.php) and copy the following code:
<!--
Rui Santos
-->
<?php
$servername = "localhost";
$dbname = "REPLACE_WITH_YOUR_DATABASE_NAME";
$username = "REPLACE_WITH_YOUR_USERNAME";
$password = "REPLACE_WITH_YOUR_PASSWORD";
// Create connection
// Check connection
if ($conn->connect_error) {
$sql = "SELECT id, value1, value2, value3, reading_time FROM Sensor order by reading_time desc limit 40";
$result = $conn->query($sql);
$sensor_data[] = $data;
/*$i = 0;
$i += 1;
}*/
$value1 = json_encode(array_reverse(array_column($sensor_data, 'value1')), JSON_NUMERIC_CHECK);
/*echo $value1;
echo $value2;
echo $value3;
echo $reading_time;*/
$result->free();
$conn->close();
?>
<!DOCTYPE html>
<html>
<script src="https://code.highcharts.com/highcharts.js"></script>
<style>
body {
min-width: 310px;
max-width: 1280px;
height: 500px;
margin: 0 auto;
h2 {
font-family: Arial;
font-size: 2.5rem;
text-align: center;
</style>
<body>
<script>
series: [{
showInLegend: false,
data: value1
}],
plotOptions: {
},
},
xAxis: {
type: 'datetime',
categories: reading_time
},
yAxis: {
},
});
chart:{ renderTo:'chart-humidity' },
showInLegend: false,
data: value2
}],
plotOptions: {
},
xAxis: {
type: 'datetime',
categories: reading_time
},
yAxis: {
},
});
chart:{ renderTo:'chart-pressure' },
series: [{
showInLegend: false,
data: value3
}],
plotOptions: {
},
},
xAxis: {
type: 'datetime',
categories: reading_time
},
yAxis: {
},
});
</script>
</body>
</html>
After adding the $dbname, $username and $password save the file and continue with this project.
$dbname = "example_esp_data";
$username = "example_esp_board";
$password = "YOUR_USER_PASSWORD";
If you try to access your domain name in the following URL path, you’ll see the following:
http://example.com/esp-chart.php
That’s it! If you see three empty charts in your browser, it means that everything is ready. In the next section, you’ll
learn how to publish your ESP32 or ESP8266 sensor readings.
To build the charts, we’ll use the Highcharts library. We’ll create three charts: temperature, humidity and pressure over
time. The charts display a maximum of 40 data points, and a new reading is added every 30 seconds, but you change
these values in your code.
This project is compatible with both the ESP32 and ESP8266 boards. You just need to assemble a simple circuit and
upload the sketch provided to insert temperature, humidity, pressure and more into your database every 30 seconds.
Parts Required
For this example we’ll get sensor readings from the BME280 sensor. Here’s a list of parts you need to build the circuit for
this project:
BME280 sensor
Jumper wires
Breadboard
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!
Schematics
The BME280 sensor module we’re using communicates via I2C communication protocol, so you need to connect it to the
ESP32 or ESP8266 I2C pins.
So, assemble your circuit as shown in the next schematic diagram (read complete Guide for ESP32 with BME280).
Assemble your circuit as in the next schematic diagram if you’re using an ESP8266 board (read complete Guide for
ESP8266 with BME280).
ESP32/ESP8266 Code
We’ll program the ESP32/ESP8266 using Arduino IDE, so you must have the ESP32/ESP8266 add-on installed in your
Arduino IDE. Follow one of the next tutorials depending on the board you’re using:
Install the ESP32 Board in Arduino IDE – you also need to install the BME280 Library and Adafruit_Sensor library
Install the ESP8266 Board in Arduino IDE – you also need to install the BME280 Library and Adafruit_Sensor library
After installing the necessary board add-ons, copy the following code to your Arduino IDE, but don’t upload it yet. You
need to make some changes to make it work for you.
/*
Rui Santos
The above copyright notice and this permission notice shall be included in all
*/
#ifdef ESP32
#include <WiFi.h>
#include <HTTPClient.h>
#else
#include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
#include <WiFiClient.h>
#endif
#include <Wire.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_BME280.h>
// REPLACE with your Domain name and URL path or IP address with path
// Keep this API Key value to be compatible with the PHP code provided in the project page.
// If you change the apiKeyValue value, the PHP file /post-data.php also needs to have the same key
/*#include <SPI.h>
#define BME_SCK 18
#define BME_MISO 19
#define BME_MOSI 23
void setup() {
Serial.begin(115200);
WiFi.begin(ssid, password);
Serial.println("Connecting");
while(WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
Serial.println("");
Serial.println(WiFi.localIP());
if (!status) {
Serial.println("Could not find a valid BME280 sensor, check wiring or change I2C address!");
while (1);
void loop() {
if(WiFi.status()== WL_CONNECTED){
HTTPClient http;
http.begin(serverName);
http.addHeader("Content-Type", "application/x-www-form-urlencoded");
// Prepare your HTTP POST request data
Serial.print("httpRequestData: ");
Serial.println(httpRequestData);
// then, use the httpRequestData variable below (for testing purposes without the BME280 sensor)
//http.addHeader("Content-Type", "text/plain");
// If you need an HTTP request with a content type: application/json, use the following:
//http.addHeader("Content-Type", "application/json");
if (httpResponseCode>0) {
Serial.println(httpResponseCode);
else {
Serial.println(httpResponseCode);
// Free resources
http.end();
else {
Serial.println("WiFi Disconnected");
delay(30000);
}
You need to modify the following lines with your network credentials: SSID and password. The code is well commented
on where you should make the changes.
You also need to type your domain name, so the ESP publishes the readings to your own server.
Now, you can upload the code to your board. It should work straight away both in the ESP32 or ESP8266 board. If you
want to learn how the code works, read the next section.
This project is already quite long, so we won’t cover in detail how the code works, but here’s a quick summary:
Import all the libraries to make it work (it will import either the ESP32 or ESP8266 libraries based on the selected board
in your Arduino IDE)
The apiKeyValue is just a random string that you can modify. It’s used for security reasons, so only anyone that knows
your API key can publish data to your database
Then, in the loop() is where you actually make the HTTP POST request every 30 seconds with the latest BME280
readings:
http.begin(serverName);
http.addHeader("Content-Type", "application/x-www-form-urlencoded");
+ String(bme.readTemperature())
+ "&value2=" + String(bme.readHumidity())
You can comment the httpRequestData variable above that concatenates all the BME280 readings and use the
httpRequestData variable below for testing purposes:
Demonstration
After completing all the steps, let your ESP board collect some readings and publish them to your server.
If everything is correct, this is what you should see in your Arduino IDE Serial Monitor:
http://example.com/esp-chart.php
You should see the all the readings stored in your database. Refresh the web page to see the latest readings:
You can also go to phpMyAdmin to manage the data stored in your Sensor table. You can delete it, edit, etc…