Saturday, January 12, 2019

 

LM35 Temperature Sensor with Arduino

 

Arduino Code :

 
float temp;
 float farh;
 int tempPin = A0;
 void setup()
 {
 Serial.begin(9600);
 }
 void loop()
 {
 temp = analogRead(tempPin);
 temp = temp * 0.48828125;
 farh= (temp*9)/5 + 32;
 Serial.print("TEMPRATURE = ");
 Serial.print(temp);
 Serial.print(" C\t");
 Serial.print("TEMPRATURE = ");
 Serial.print(farh);
 Serial.print(" F");
 Serial.println();
 delay(1000);
 } 

Wednesday, January 9, 2019

 
LPG gas Leakage Detector
 
 
 
Code :
 
 
 
 
  void setup()
{
  pinMode(13,OUTPUT);
  pinMode(8,OUTPUT);
  Serial.begin(9600);
}
void loop() {
 
  int val = analogRead(A3);
    if(val>400)
    {
    digitalWrite(13,HIGH);
    digitalWrite(8,HIGH);
    Serial.println(val);
    delay(40);
   
  }
  else
  {
   
    digitalWrite(13,LOW);
    digitalWrite(8,LOW);
    Serial.println("no Smoke");
    delay(10);
   
    }
 
}



Thursday, December 6, 2018

Electronics in Tamil

Electronics In Tamil

Introduction:

                 In This we are providing the Electronics and technology related topic Tutorials in Tamil language.Also we are providing electronics and communication projects in Tamil.Through this channel Tamil spoken peoples can easily understand the Electronics.

Subscribe to Our YouTube channel and get the Videos
                                                                              Click Here For Our YouTube Channel