How to serve a web dashboard from the ESP32 with the device working as Soft AP. We will be using the ESP-DASH library and the Arduino core.
ESP32: Real-time web dashboard
How to use the ESP-DASH library to implement a web-based dashboard that will be updated in real time with sensor measurements (temperature and humidity). Under the hood, the update mechanism will be based in websockets. We will be using the ESP32 and program it with the Arduino core.
ESP32: Getting temperature measurements from a BMP388 sensor
How to obtain temperature measurements from a BMP388 sensor, using the ESP32 and the Arduino core.
Micro:bit MicroPython: Getting temperature
In this tutorial we will learn how to obtain temperature measurements using the Micro:Bit board. Introduction In this tutorial we will learn how to obtain temperature measurements using the Micro:Bit board. It's important to mention that we are not going to need any additional sensor. Instead, we are going to use Micro:bit's built in temperature …
Continue reading "Micro:bit MicroPython: Getting temperature"
ESP32 Espruino DHT22: Getting temperature and humidity
In this tutorial we will check how to get temperature and humidity measurements from a DHT22 sensor using Espruino, running on the ESP32. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this tutorial we will check how to get temperature and humidity measurements from a DHT22 sensor using Espruino, …
Continue reading "ESP32 Espruino DHT22: Getting temperature and humidity"
ESP32 Arduino: Temperature, humidity and CO2 concentration web server
In this ESP32 tutorial we will check how to develop a HTTP web server that will expose an API for clients to retrieve measurements of temperature, humidity and CO2, using a CO2 sensor and a DHT22 temperature and humidity sensor. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this ESP32 …
Continue reading "ESP32 Arduino: Temperature, humidity and CO2 concentration web server"
ESP32 Arduino: Getting temperature from a DHT22 sensor
In this ESP32 tutorial, we will check how to get temperature measurements on the Arduino core running on the ESP32, using a DHT22 temperature and humidity sensor. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this ESP32 tutorial, we will check how to get temperature measurements on the Arduino …
Continue reading "ESP32 Arduino: Getting temperature from a DHT22 sensor"
ESP8266: Read DHT11 measurements
How to connect the DHT11 sensor to an ESP8266 and obtain measurements.