Saturday, 2 August 2014

Fire Alarm Using Arduino

Components Required:


  1. Arduino with USB Cable
  2. A PC or Laptop with Arduino software with drivers installed for programming the Arduino
  3. LM35 Temperature Sensor
  4. Piezo Buzzer
  5. Bread Board
  6. Connecting Wires

Circuit Diagram:


Code:

/*
============================================
The MIT License (MIT)
Copyright (c) 2013 Jayakarthigeyan Prabakar
Fire Alarm Using LM35 and Piezo Buzzer with Arduino sketch is the Arduino sketch used in the project shown at https://www.youtube.com/watch?v=XC3xZ-cWDaY
Created on 19th February 2013 by Jayakarthigeyan Prabakar <jayakarthigeyan@gmail.com>
Updates should (hopefully) always be available at https://github.com/jayakarthigeyan/Fire-Alarm-Using-LM35-Temperature-Sensor-and-Piezo-Buzzer-with-Arduino/
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
===============================================
*/
void setup()
{
}
void loop()
{
float temp = (5.0 * analogRead(A0) * 100.0) / 1024;
if(temp>32)
{
t();
}
else
{
if(temp>30)
{
t1();
}
if(temp<30);
{
noTone(7);
}
}
}
void t()
{
tone(7, 494, 500);
delay(1000);
}
void t1()
{
tone(7, 494, 500);
delay(2000);
}

Video:

Monday, 7 July 2014

MSP430 - The Launch Pad And The Arduino

MSP430

MSP430 is something similar to Arduino. I look at that in the same way I look at Arduino with some disadvantages and advantages.

Arduino is 5V operated, it also has 3.3V versions. But comparatively MSP430 MCUs that operate at 3.3V consumes less power.

Programming MSP430s using the launchpad have become easier due to the Energia IDE which is similar to Arduino IDE and supports most of the libraries built for Arduino IDE.

For more information on MSP430s and the launchpad take a look at http://energia.nu/

Arduino

What is Arduino?


It's an open-source physical computing platform based on a simple microcontroller board which you can program by using the software provided by Arduino manufacturer by connecting it to your computer using USB cable.

Why Arduino and Why not any other microcontroller that are available?
Arduino is simple to use, flexible and we have so much of resources available to get the complete output of the microcontroller.

For More Information Regarding Arduino, Visit its official Website: http://arduino.cc 

About the Blog and Author

Hello Everyone, I Jayakarthigeyan Prabakar, author of this blog, an Application Engineer by profession and an Electronics hobbyist since 2012, have created this blog to share the knowledge that I have about Electrical and Electronics Engineering, Arduino, MSP430, Beaglebone Black and Python. I will start posting some basic concepts of Electrical and Electronics followed by how to use them with Arduino, MSP430 and Beaglebone Black to build embedded systems that you desire. I will be posting articles about the details of schematics, source code for the projects that I have done using the development boards that I have mentioned earlier. Few of my projects can be seen in my YouTube channels at https://www.youtube.com/letsplaywitharduino ,  https://www.youtube.com/beagleboneblack .
So stay tuned to the blog for the upcoming posts. And I am freelancer too, so if you guys need any help in projects using Arduino, MSP430 or Beaglebone Black, you can hire me. Send me an email at jayakarthigeyan@gmail.com to contact me.