TechnicalEngineer
Published © GPL3+

Arduino Based Alcohol Detector

The Arduino based project is a breath analyzer for alcohol detection built on MQ-3 alcohol sensor.

IntermediateFull instructions provided10,327
Arduino Based Alcohol Detector

Story

Read more

Schematics

Arduino Based Alcohol Detector

Code

Arduino Based Alcohol Detector

C Header File
//Program to 


#include <Servo.h>


#include <LiquidCrystal.h>


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

int ledPin = 12;

int sensorPin = A1;


Servo myservo;


int pos = 0;


int value;


void setup()

{


Serial.begin(9600);

lcd.begin(16,2);


pinMode(ledPin,OUTPUT);


 myservo.attach(10);

}


void loop() 

{


int Value = analogRead(sensorPin);

value = analogRead(A1);



lcd.print("Alcohollevel:");

lcd.println(value);

Serial.println(value);


if (Value > 500) 

{

    digitalWrite(ledPin,HIGH);

    

     lcd.setCursor(0, 2);

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

    Serial.print ("Alert");

    

      myservo.write(100); 

    

  } 

  else {

    digitalWrite(ledPin,LOW); 

    

      lcd.setCursor(0, 2);

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

    Serial.print("Normal");

    

     myservo.write(0); 

  }


  



delay(1000);

lcd.clear();


}

Credits

TechnicalEngineer

TechnicalEngineer

4 projects • 49 followers

Comments