Indoor Air Quality Monitor System using Arduino

Поделиться
HTML-код
  • Опубликовано: 24 май 2023
  • "Welcome to IOT craftsman ! In this tutorial, we will guide you through the step-by-step process of creating your own Air Quality Index (AQI) monitor using Arduino Uno. Monitoring the air quality around us is essential for our well-being, and with the power of Arduino, we can build a simple yet effective device to measure the air quality in real-time.
    In this video, we will cover the following topics:
    Components needed for the project, including the Arduino Uno board, air quality sensor, display module, and necessary cables.
    Wiring the circuit correctly, ensuring all connections are secure.
    Explaining the code required for the Arduino Uno to read data from the air quality sensor and display it on the screen.
    Uploading the code to the Arduino Uno and testing the sensor's functionality.
    Demonstrating the AQI monitor in action, showing how it provides real-time air quality data.
    No prior experience with Arduino is necessary to follow along with this tutorial. We will provide detailed explanations and step-by-step instructions to make the process accessible to beginners and hobbyists alike. By the end of this video, you will have your very own Air Quality Index monitor, allowing you to monitor the air quality in your surroundings.
    Join us on this exciting journey of DIY electronics and environmental monitoring. Don't forget to subscribe to our channel and hit the notification bell to stay updated with our latest tutorials, projects, and tech-related content. Let's make a positive impact on the world together!
    IOT craftsman- Your destination for innovative DIY projects and tech tutorials.
    Code and Circuit: drive.google.com/drive/folder...

Комментарии • 21

  • @tahifrewcc-zl4hi
    @tahifrewcc-zl4hi Год назад +1

    Great one! Keep going!

  • @dhivirmehtaa6265
    @dhivirmehtaa6265 Год назад +2

    Woohoo lesgoo🎉

  • @KhushiJainM-bs1fk
    @KhushiJainM-bs1fk Год назад +1

    Wohhooooo🎉🎉

  • @karthikgoud8171
    @karthikgoud8171 3 месяца назад +1

    can you keep the links of components to purchase ,they are not available on online

  • @WonderWise7426
    @WonderWise7426 3 месяца назад

    can you send the cod please

  • @CleeveWynEgot
    @CleeveWynEgot 6 месяцев назад +1

    Hi! I can't find any LCD breakout board, it's sad but thankfully i have available LCD display Keyestuido. But the question is, can i use the Keyestudio IIC/I2C 162 1602 16X2 LCD Module Display Screen? Is it compatible if i use this kind of LCD display to make this Air Quality Monitoring System? If i can, do you have a code with this kind of lcd display? Help me please for my research study :)

    • @CleeveWynEgot
      @CleeveWynEgot 6 месяцев назад

      : )

    • @iot_craftsman
      @iot_craftsman  6 месяцев назад +1

      Hey! You can use Keyestudio lcd moduel, Only the libraries might change, use library liquidcrystal_i2c, it might work

    • @CleeveWynEgot
      @CleeveWynEgot 5 месяцев назад

      hi! what is the code if i use this library? :))@@iot_craftsman

    • @CleeveWynEgot
      @CleeveWynEgot 5 месяцев назад

      Hi! please help me, the code is not compatible on the lcd display 16x2 keyestuido, because the LCD display keyestuido only has four pins. what should i change in the code? if the lcd display keyestuido only has four pins. please help

    • @CleeveWynEgot
      @CleeveWynEgot 5 месяцев назад

      @@iot_craftsman
      #include
      #include
      int sensorValue;
      LiquidCrystal_I2C lcd(0x27,16,2);
      void setup() {
      // put your setup code here, to run once:
      pinMode(A0,INPUT);
      lcd.init();
      lcd.backlight();
      Serial.begin(9600); // sets the serial port to 9600
      lcd.begin(16, 2);
      lcd.print("Air Quality");
      lcd.setCursor(1, 0);
      lcd.print(" System");
      pinMode(A0, INPUT);
      }
      void loop() {
      // put your main code here, to run repeatedly:
      sensorValue = analogRead(A0); // read analog input pin 0
      lcd.clear();
      lcd.setCursor(0,0);
      lcd.print("AQI: ");
      // lcd.setCursor(0,8);
      lcd.print(sensorValue);
      Serial.print(sensorValue);
      if (sensorValue = 181 && sensorValue < 350){
      lcd.setCursor(1,1);
      lcd.print("Poor ");
      }
      else {
      lcd.setCursor(1,1);
      lcd.print("Toxic ");
      }
      delay(3000);
      }
      can you check this? is this correct? :))

  • @prabhjeetkaur7338
    @prabhjeetkaur7338 5 месяцев назад

    Where is the code I downloaded it but I can’t find it

    • @iot_craftsman
      @iot_craftsman  5 месяцев назад

      It should be in your downloads

  • @WonderWise7426
    @WonderWise7426 3 месяца назад

    i really need it send the cod

  • @vishnuganesapandian9365
    @vishnuganesapandian9365 4 месяца назад

    Code is not there bro🙃

    • @iot_craftsman
      @iot_craftsman  4 месяца назад

      Please check AQI. ino file

    • @gouthamkumar7477
      @gouthamkumar7477 2 месяца назад

      @@iot_craftsman AQI. ino file showing error in file

    • @iot_craftsman
      @iot_craftsman  2 месяца назад

      @@gouthamkumar7477 what is the error?