IOT Based Advanced Smart Cradle For Baby Monitoring System

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ม.ค. 2023
  • To get abstract and price visit our website:
    projectsfactory.in/product/io...
    *************************************************************************************************
    Project short description:
    Cradle will be swing automatically when baby cries. Sound sensor detects baby crying and gives signal to arduino. DHT11 sensor placed on cradle to detect temperature and humidity surrounding of baby. Moisture sensor placed inner bottom of cradle to detect baby urination. when baby Urinates then buzzer will be ON to indicate to parents. MEMS sensor placed on baby to detect baby moments. when baby moved, fan will be ON. This will give cooling effect to baby so that baby can sleep easily. Arduino sends all these sensors data to IOT cloud server. Parents can easily monitor baby parameters from remote place. To get free abstract visit above URL.
    *************************************************************************************************
    Few more projects on IOT Projects:
    21.IOT Smart Door Opener
    www.youtube.com/watch?v=TEXhP...
    22.IOT Based Industrial Automation Using Arduino
    www.youtube.com/watch?v=f93gz...
    23.IOT Traffic Signal Monitoring System
    www.youtube.com/watch?v=s7Cmy...
    24.IOT Based Vehicle Over Speed indication
    www.youtube.com/watch?v=vWThV...
    25.IOT Based Asset Tracking With RFID
    www.youtube.com/watch?v=LLlsn...
    26.IOT Gas And Fire Leakage Monitoring With Siren Alert
    www.youtube.com/watch?v=GIWXM...
    27.IOT Heart Rate Monitoring
    www.youtube.com/watch?v=BoIrS...
    28.IOT Based Smart Toll Booth System
    www.youtube.com/watch?v=5lPmQ...
    29.IOT Patient Health Monitoring
    www.youtube.com/watch?v=N9GH1...
    30.IOT Smart Garbage Monitoring System For Municipal Corporation System
    www.youtube.com/watch?v=d_m1d...
    31.IOT Smart Agriculture
    www.youtube.com/watch?v=6sfL1...
    32.IOT Flood Monitoring And Alerting With GSM
    www.youtube.com/watch?v=rEXTJ...
    33.IOT Based Vehicle Over Weight Safety System
    www.youtube.com/watch?v=qzNuP...
    34.IOT Smart Energy Meter With GSM
    www.youtube.com/watch?v=mBHGx...
    35.Weather Monitoring And Forecasting Using IOT
    www.youtube.com/watch?v=OcFSN...
    36.IOT Based Mining Tracking And Worker Safety Helmet
    www.youtube.com/watch?v=DmtD0...
    37.Smart Shopping Trolley RFID - IOT
    www.youtube.com/watch?v=Y87xV...
    38.IOT Based Gas Cylinder Level And Leakage Detection Using Arduino
    www.youtube.com/watch?v=wC_nH...
    39.Automatic bus fare collection system using IOT, GPS and RFID technology
    • Automatic Bus Fare Col...
    40.IOT based human weight measurement using RFID and load cell
    www.youtube.com/watch?v=Tt5r5...
    41.IOT Blood Pressure Monitoring System
    • IOT Blood Pressure Mon...
    **********************************************************************************************
    #iotsmartcradle #babymonitoring #arduinocradle #advancedprojects #finalyearprojects #projectsfactory

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

  • @detce440satyamsingh7
    @detce440satyamsingh7 7 วันที่ผ่านมา +1

    Sir please provide arduni code

  • @shobithshetty1907
    @shobithshetty1907 5 หลายเดือนก่อน

    sir can i get all components name and how to connect all this

    • @projectsfactory
      @projectsfactory  2 หลายเดือนก่อน

      Thnaks for watching. You can call or whatsapp +916309508213

    • @vasavivasu367
      @vasavivasu367 หลายเดือนก่อน

      There is no what's app for this number then how to contact you

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

    #include "TinyDHT.h"
    #include
    #define WaterSensor 3
    #define Buzzer 4
    const int servoPin=5;
    const int soundpin=A5;
    const int threshold=32;
    Servo Servo1;
    #define DHTPIN 6
    #define DHTTYPE DHT22
    #define fan 8
    DHT dht (DHTPIN, DHTTYPE);
    int tempMode = 0;
    int t;
    void setup() {
    pinMode(WaterSensor, INPUT);
    pinMode(Buzzer, OUTPUT);
    Serial.begin(9600);
    pinMode(fan, OUTPUT);
    dht.begin();

    pinMode(soundpin,INPUT);
    Servo1.attach(servoPin);
    sound();
    }
    void loop() {
    /* The water sensor will switch LOW when water is detected.
    Get the Arduino to illuminate the LED and activate the buzzer
    when water is detected, and switch both off when no water is present */
    if( digitalRead(WaterSensor) == LOW) {
    digitalWrite(Buzzer,HIGH);
    tone(Buzzer, 500);
    delay(500);
    noTone(Buzzer);
    delay(500);
    }else {
    digitalWrite(Buzzer,LOW);
    sound();
    temp();
    }
    }
    void sound() {
    int soundsens=analogRead(soundpin);
    if (soundsens>=threshold) {
    // Make servo go to 0 degrees
    Servo1.write(0);
    delay(200);
    // Make servo go to 90 degrees
    Servo1.write(180);
    delay(200);
    // Make servo go to 180 degrees

    delay(1000);
    }
    }
    void temp() {

    t = dht.readTemperature(tempMode);
    Serial.println(t);
    if(t>800){
    digitalWrite(fan,HIGH);
    }
    else {
    digitalWrite(fan,LOW);
    }
    }