Nikunj Patel
Published © GPL3+

SCD4X CO2 sensor with ESP32 on Blynk

Are you interested in monitoring your house air quality? You can do it in very easy few steps.

BeginnerFull instructions provided1 hour716
SCD4X CO2 sensor with ESP32 on Blynk

Things used in this project

Hardware components

Adafruit SCD-41
×1
SparkFun Qwiic Cable Kit
SparkFun Qwiic Cable Kit
×1
SparkFun Thing Plus - ESP32 WROOM (USB-C)
SparkFun Thing Plus - ESP32 WROOM (USB-C)
×1

Software apps and online services

Arduino IDE
Arduino IDE
Blynk
Blynk

Story

Read more

Schematics

Blynk app

setup Blynk app

ESP32 + SCD41

Need Qwiic cable

Code

Blynk Code for ESP32 & SCD41

C/C++
You need to download Blynk app and setup account. Please go to there https://blynk.io/ and learn how to do it or watch video on youtube (https://www.youtube.com/watch?v=Gx0VBIyUSHU).
#define BLYNK_PRINT Serial

/* Fill-in information from Blynk Device Info here */
#define BLYNK_TEMPLATE_ID           "TMPL2EPAz_-Wc"
#define BLYNK_TEMPLATE_NAME         "Quickstart Device"
#define BLYNK_AUTH_TOKEN            "E2t4Lzk_uUiSZ-wN06VIrvhIe7ivznnI"

#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>

#include <SPI.h>
#include <Wire.h>


#include "SparkFun_SCD4x_Arduino_Library.h" //Click here to get the library: http://librarymanager/All#SparkFun_SCD4x
SCD4x mySensor;

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "YourNetworkName";
char pass[] = "YourPassword";

BlynkTimer timer;

void setup()
{
  // Debug console
  Serial.begin(115200);
  
  Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
  timer.setInterval(1000L, myTimerEvent);

  Wire.begin();
    if (mySensor.begin() == false)
  {
    Serial.println(F("Sensor not detected. Please check wiring. Freezing..."));
    while (1)
      ;
  }
}


void myTimerEvent()
{
  // You can send any value at any time.
  // Please don't send more that 10 values per second.
  if (mySensor.readMeasurement()){
  Blynk.virtualWrite(V1, mySensor.getTemperature());
  Serial.println(mySensor.getTemperature(), 1);

  Blynk.virtualWrite(V2, mySensor.getHumidity());
  Serial.println(mySensor.getHumidity(), 1);

  Blynk.virtualWrite(V3, mySensor.getCO2());
  Serial.println(mySensor.getCO2(), 1);
  }
   else
    Serial.println("Waiting for new data");

   delay(500);
}

void loop()
{
  Blynk.run();
  timer.run();
}

Credits

Nikunj Patel
6 projects • 19 followers
Electromechanical Engineer
Contact

Comments

Please log in or sign up to comment.