Wet & Dry Waste Smart Dustbin for House | Best science Project | Harish Projects

Image
 Watch Full Detailed video 👇🏻 Diagram in Video👆 //Arduino Code// //YouTube: Harish Projects //Order Electronic Parts & Project kit:  HarishProjects.com // #include <Servo.h> Servo servo1; const int trigPin = 12; const int echoPin = 11; long duration; int distance=0; int potPin = A0; //input pin int soil=0; int fsoil; void setup()  {   Serial.begin(9600); //Serial.print("Humidity"); pinMode(trigPin, OUTPUT);  pinMode(echoPin, INPUT);  servo1.attach(8); } void loop()  { //YouTube: Harish Projects //Order Electronic Parts & Project kit:  HarishProjects.com //      int soil=0;   for(int i=0;i<2;i++)   { digitalWrite(trigPin, LOW); delayMicroseconds(7); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); delayMicroseconds(10); duration = pulseIn(echoPin, HIGH); distance= duration*0.034/2+distance; delay(10);   }   distance=distance/2;   Serial.println(distance); if ...

Gas Leak & Smoke Alarm - Amazing Best science Project #scienceProject


 

                                                      ...............ARDUINO CODE..................


  #include <LiquidCrystal.h>

LiquidCrystal lcd(7, 6, 5, 4, 3, 2);

 

int redLed = 10;

int greenLed = 12;

int buzzer = 8;

int smokeA0 = A0;

// Your threshold value

int sensorThres = 250;

 

void setup() {

  pinMode(redLed, OUTPUT);

  pinMode(buzzer, OUTPUT);

  pinMode(smokeA0, INPUT);

  Serial.begin(9600);

  lcd.begin(16,2);

}

 

void loop() {

  int analogSensor = analogRead(smokeA0);

 

  Serial.print("Pin A0: ");

  Serial.println(analogSensor);

  lcd.print("Harish :");

  lcd.print(analogSensor-250);

  // Checks if it has reached the threshold value

  if (analogSensor-250 > sensorThres)

  {

    digitalWrite(redLed, HIGH);

    lcd.setCursor(0, 2);

    lcd.print("Alert....!!!");

    digitalWrite(12, LOW);

    tone(buzzer, 1000, 250);

  }

  else

  {

    digitalWrite(redLed, LOW);

    digitalWrite(12, HIGH);

    lcd.setCursor(0, 2);

    lcd.print(".....Normal.....");

    noTone(buzzer);

  }

  delay(500);

  lcd.clear();

}


Comments

Instagram said…
#include

LiquidCrystal lcd(7, 6, 5, 4, 3, 2);



int redLed = 10;

int greenLed = 12;

int buzzer = 8;

int smokeA0 = A0;

// Your threshold value

int sensorThres = 250;



void setup() {

pinMode(redLed, OUTPUT);

pinMode(buzzer, OUTPUT);

pinMode(smokeA0, INPUT);

Serial.begin(9600);

lcd.begin(16,2);

}



void loop() {

int analogSensor = analogRead(smokeA0);



Serial.print("Pin A0: ");

Serial.println(analogSensor);

lcd.print("akash venke :");

lcd.print(analogSensor-250);

// Checks if it has reached the threshold value

if (analogSensor-250 > sensorThres)

{

digitalWrite(redLed, HIGH);

lcd.setCursor(0, 2);

lcd.print("Alert....!!!");

digitalWrite(12, LOW);

tone(buzzer, 1000, 250);

}

else

{

digitalWrite(redLed, LOW);

digitalWrite(12, HIGH);

lcd.setCursor(0, 2);

lcd.print(".....Normal.....");

noTone(buzzer);

}

delay(500);

lcd.clear();

}

Popular posts from this blog

Smart Bridge - Automatic Hight increase when flooding | Best science Project

How to make Phone control RC car using Arduino #phoneControlCar

Inspire Award Project | Train accident Prevention project | Best science Project / Harish Projects