Tempreture Monitoring Using Blynk Iot || Blynk 2.O || DHT11

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ส.ค. 2022
  • Hey hello guys ,
    in this video i will let you know how to make Tempreture Monitoring with Blynk 2.O using Nodemcu and DHT11 sensor.
    codes and circuit diagram link
    drive.google.com/drive/folder...
    ANY QUERIES RELATED TO VIDEO/COLLABORATION THEN FIND ME ON
    👉INSTAGRAM 🔗 / k.mani4u
    👉FACEBOOK 🔗 profile.php?...
    👉LINKED IN 🔗 / kotini-mani-kanta-7277...
    please don't for get to Subscribe
  • แนวปฏิบัติและการใช้ชีวิต

ความคิดเห็น • 14

  • @k.saikumarachary7576
    @k.saikumarachary7576 ปีที่แล้ว

    First comment 😅

  • @Tompok99
    @Tompok99 ปีที่แล้ว

    sir, can wemos d1

  • @technicaltejo
    @technicaltejo ปีที่แล้ว

    Hello I want to make home automation system for my home.
    I want to connect all devices ( fans bulbs night bulbs Fridge and inverter). In my home I have 15 electric board for on off fans and bulbs 💡. In TH-cam only one board automation system available. I should not use node mcu for every electric boards. My question is we can connect all electric boards only one node mcq / Resberry pi.
    In home automation system Function
    Manual Control
    App control
    And
    Own Ai and set timer to on off fans and bulbs 💡
    Please share me own suggestion

  • @MohanMohan-bi5gj
    @MohanMohan-bi5gj หลายเดือนก่อน

    Code link send me discrepyion link is wrong

  • @shuriken-9052
    @shuriken-9052 11 หลายเดือนก่อน

    Can you upload your cod ? Link is wrong cod

  • @sirjon858
    @sirjon858 ปีที่แล้ว +1

    The code is different. Not working on my end. :(

  • @jolebebcastanares4766
    @jolebebcastanares4766 ปีที่แล้ว +2

    Sir good day, but i think the code that you provided for this project is wrong

    • @Projectswithmani
      @Projectswithmani  ปีที่แล้ว

      // Fill-in information from your Blynk Template here
      #define BLYNK_TEMPLATE_ID "TMPLuWr4gFh5"
      #define BLYNK_DEVICE_NAME "DHT11 Sensor data in blynk2"
      #define BLYNK_FIRMWARE_VERSION "0.1.0"
      #define BLYNK_PRINT Serial
      #define USE_NODE_MCU_BOARD
      #include "BlynkEdgent.h"
      #include "DHT.h"
      #define DHTPIN D2
      #define DHTTYPE DHT11
      DHT dht(DHTPIN, DHTTYPE);
      float t, h;
      void sendSensor()
      {
      h = dht.readHumidity();
      t = dht.readTemperature();
      Blynk.virtualWrite(V0, h);
      Blynk.virtualWrite(V1, t);
      }
      void setup()
      {
      Serial.begin(9600);
      dht.begin();
      BlynkEdgent.begin();
      delay(2000);
      timer.setInterval(1000L, sendSensor);
      }
      void loop()
      {
      BlynkEdgent.run();
      timer.run(); // Initiates SimpleTimer
      }

    • @Projectswithmani
      @Projectswithmani  ปีที่แล้ว

      please try with this code by connecting D2 pin of nodemcu with data pin of DHT 11

    • @Projectswithmani
      @Projectswithmani  ปีที่แล้ว

      make sure you are changing then template id and wifi credentials
      and also make sure to subscribe to my channel

    • @jolebebcastanares4766
      @jolebebcastanares4766 ปีที่แล้ว

      Thank you very much sir !!

  • @YNMtech
    @YNMtech ปีที่แล้ว +2

    This is not the apt code bro