DIY CO2 Measurement Device Using ESP32 and OLED

If you don’t want to miss my updates, remember to check the official account in the upper right corner and mark it as a star, and send me a star.

DIY CO2 Measurement Device Using ESP32 and OLED
DIY CO2 Measurement Device Using ESP32 and OLED

When monitoring air quality, in addition to displaying the current value at a certain moment, we want to know the changes over a period of time. The CO2 monitoring project shared today provides an idea of how to display both a single value and a curve graph. Overall, the project is quite simple, and the hardware used is also common, which can be completely replaced with other sensors.

DIY CO2 Measurement Device Using ESP32 and OLED

Hardware Composition

  • ESP32 Board

  • 3.5-inchTFT Touch

  • SGP30 Air Quality Sensor

  • 3D Printed Shell

Why CO2 Measurement Needs Historical Levels

For a parameter that is very easily changed and has a wide range, checking the value at a certain moment is not very meaningful. For example, the CO2 level may reach a very high concentration at this moment, but the next moment it may return to normal in a certain area. Typically, temperature and humidity in the air are measured by checking the current values, but CO2 concentration measurement is different; it is measured using a sensor to obtain levels within a certain space, and there are too many influencing factors: wind, human breathing, temperature, humidity, etc. Therefore, recording historical values is important for judging CO2 levels and changes.

Core Component – Sensor

The SGP30 sensor used in the project, is the first metal oxide gas sensor that integrates multiple sensing elements on a single chip, providing detailed information on air quality, such as the content of carbon dioxide (CO2) and volatile organic compounds (VOCs). Only CO2 measurement is used here.

DIY CO2 Measurement Device Using ESP32 and OLED

For convenience, a sensor module used in the project not only includes SGP30, but also integrates the DHT11 module for measuring temperature and humidity. Additionally, there is a buzzer on the board for alerts.

The most important thing is that it can be used with a 3.5-inch LCD device and just plug it in.

DIY CO2 Measurement Device Using ESP32 and OLED

Code

The programming environment for ESP32 uses Arduino IDE, which is simple and convenient. It will display the values measured by the sensor and plot the curve with historical values on the 3.5-inch LCD display. The main code is as follows:

#include "SPI.h"
#include "TFT_eSPI.h"
#include <Wire.h>
#include "Adafruit_SGP30.h"
#include "DHT.h"
#define BUZZER_ON digitalWrite(BUZZPIN, HIGH)
#define BUZZER_OFF digitalWrite(BUZZPIN, LOW)
#define LDO_1V8_ON digitalWrite(LDO_PWR_EN_PIN, HIGH)
#define LDO_1V8_OFF digitalWrite(LDO_PWR_EN_PIN, LOW)
#define DHTPIN 18     // Digital pin connected to the DHT sensor
#define DHTTYPE DHT11 // DHT11
#define BUZZPIN 5
#define LDO_PWR_EN_PIN 19 //AP2112K enable pin
#define I2C_SDA 26
#define I2C_SCL 27
TFT_eSPI tft = TFT_eSPI();
DHT dht(DHTPIN, DHTTYPE);
Adafruit_SGP30 sgp;
int list_1[50] = {0};
int list_1_length = 20;
int list_2[50] = {0};
int list_2_length = 20;
int interval = 3000;
void setup(){    Serial.begin(115200);
    Serial.println("Environment Test!");
    dht.begin();
    pinMode(BUZZPIN, OUTPUT);
    pinMode(LDO_PWR_EN_PIN, OUTPUT);
    BUZZER_ON;
    LDO_1V8_ON;
    delay(1000);
    BUZZER_OFF;
    Wire.begin(I2C_SDA, I2C_SCL);
    Serial.println("SGP30 test");
    if (!sgp.begin())    {        Serial.println("Sensor not found :(");        while (1)            ;    }
    //Draw frame    tft.init();    tft.fillScreen(TFT_BLACK);    tft.setTextColor(TFT_WHITE);    tft.setTextSize(2);    tft.setCursor(10, 40);    tft.println("Makerfabs line chart");
    delay(1000);    tft.fillScreen(TFT_BLACK);    draw_line_chart_window("TVOC Line Chart ( Unit : ppb ) ", (String) "Interval : " + interval + " ms", list_1_length, 0, 1200, TFT_WHITE);    draw_line_chart_window2("ECO2 Line Chart ( Unit : ppm ) ", (String) "Interval : " + interval + " ms", list_2_length, 0, 5000, TFT_WHITE);}
void loop(){    draw_line_chart(list_1, list_1_length, 0, 1200, TFT_WHITE);    draw_line_chart2(list_2, list_2_length, 0, 5000, TFT_WHITE);    delay(interval);
    int tvoc = 0;    int eco2 = 0;    weather_read(&amp;tvoc, &amp;eco2);
    draw_line_chart(list_1, list_1_length, 0, 1200, TFT_BLACK);    draw_line_chart2(list_2, list_2_length, 0, 5000, TFT_BLACK);    add_list(list_1, list_1_length, tvoc);    add_list(list_2, list_2_length, eco2);}

The complete code can be downloaded from GitHub:

github.com/Makerfabs/Project_Touch-Screen Camera/tree/master/example

If you can’t download it, you can reply “CO2 measurement” on “Darwin said” on WeChat to get the code.

☞ Actual Measurement

CO2 concentration changes quite rapidly at times, for example, breathing on the sensor will immediately increase the value. Of course, if you want to detect changes in concentration over a period of time, you need to place the sensor in an appropriate position.

Although this project is designed to monitor CO2 concentration levels, it can be adjusted according to your needs to monitor TVOC, temperature, or humidity. As shown in the figure, it collects two values and plots them in lines on the display.

DIY CO2 Measurement Device Using ESP32 and OLED

Project source: hackster.io
Creator: Luo Zeqing

END
DIY CO2 Measurement Device Using ESP32 and OLED
More practical project recommendations:
STM32 IoT Smart Home Project
Project Sharing | Step-by-step Face Recognition with MATLAB + Raspberry Pi
Raspberry Pi + Compute Stick 2 to complete real-time face recognition project
Building a cloud computing platform for embedded development boards
STM32 to achieve the simplest air mouse
Arduino Rubik’s Cube Robot
STM32 version of “AI Soul Painter”
Making an STM32 electronic photo album
STM32 + DDS DIY Signal Generator
Using Raspberry Pi and Web interface to remotely control appliances
STM32 “Cloud” Music Player
Raspberry Pi Remote Monitoring
Design of a glow tube clock based on STM32
DIY FPGA minimal system board (PCB can be directly made)
Raspberry Pi 4 to build NAS, easily connect hard drives to the internet
ESP32 car software and hardware practical sharing
Only 79 lines of code to complete creative gesture recognition
IoT + electronic ink screen can create a custom display screen
Create a pathfinding robot worth over a thousand yuan for just a few dozen yuan
Glasses that can display 3D holograms without glasses, visual persistence POV project
DIY gesture recognition module
Practical small designs that can be DIYed with no foundation
Raspberry Pi to create a smart doorbell + smart lock with video capability
Strange! My development board can automatically play games
DIY Breathing Machine
ESP8266 + Zigbee networking to transform wall switches
Wireless Home Monitoring System
DIY Bionic Arm, a tool to free your hands
Purely handmade air purifier, design data fully open source
Tech toy: Bluetooth cannon that can be controlled remotely
Using ST sensors to create the LittleBee monitoring system, allowing bees to “speak”
DIY Cat Petting Device
STM32 + Raspberry Pi to achieve 6s Rubik’s Cube robot
Blind modification of drone handles, DIY “Foam” drone

Make a smart relay without an arc using STM32

Only 5 components needed to create a practical new type necklace

The simplest method for measuring heart rate (suitable for secondary development)

Crack the magnetic levitation globe

The magical light can transmit video? Unveiling the production process

DIY Smart Watch with STM32 60FPS Animation

Paying tribute to classic radios, observing the production process

DIY Third Eye: “Special” glasses with Bluetooth/OLED/lens functions

DIY solar charger that tracks the maximum power point

MCU-free night vision goggles, just need to connect the wires

The correct way to make a DIY flow meter, interest transformation

DIY high-difficulty racing timer (lap/time-sensitive printing)

DIY mobile WIFI controlled LED dice

Gas burning power bank

DIY simple Raspberry Pi security system

Using microcontroller + ESP8266 to create a small weather station

Ultra-mini & highly expandable palm-sized robot car

Dream linkage, remotely develop microcontrollers with Raspberry Pi

Auto-tracking + pest recognition plant protection robot

uECG to achieve heartbeat LED light ring

Wireless smart high-power switch

Make an ESP8266 smart health watch from scratch

Collecting waste MCUs, turning waste into treasure

Pi Pico + Edge Impulse to deploy an intruder detection system

DIY wifi signal strength detector

Complete real-time face recognition with Raspberry Pi in seven steps

Ultrasonic ranging disguised as radar

Making an IoT power meter (voltage/current/power)

Recommended Reading:
Project Sharing | Electric Competition Series | Artificial Intelligence | Postgraduate Entrance Examination
Must-know Knowledge Points | Graduation Project | Switch Power Supply | Job Hunting
We are Nimo, the founder of Darwin, a girl who only talks about technology and not flirting. The Darwin online education platform aims to serve professionals in the electronics industry, providing skill training videos covering popular topics in various subfields, such as embedded systems, FPGA, artificial intelligence, etc. It customizes hierarchical learning content for different groups, such as commonly used knowledge points, disassembly assessments, electric competitions/smart cars/postgraduate entrance examinations, etc. Welcome to follow.
Official website: www.darwinlearns.com
Bilibili: Darwin
QQ Group: Group 1: 786258064 (full)
Group 2: 1057755357 (full)
Group 3: 871373286
DIY CO2 Measurement Device Using ESP32 and OLED

Leave a Comment