Showing posts with label Arduino Project. Show all posts
Showing posts with label Arduino Project. Show all posts

Tuesday, April 7, 2020

Circuit Schematic Aircraft Hangar Fire Alarm System using Flame Detector and Arduino Uno

Eltronicschool. - It is very important to protect aircraft hangar from fire with give the fire alarm system when the fire detected by flame detector installed. There are many flame detector used in fire alarm system likenear IR array detector, ultraviolet detector, infrared (IR) detector, UV/IR detector, Infrared thermal cameras etc.

In here we will give you one circuit schematic connection from aircraft hangar fire alarm system using flame detector and Arduino Uno. The flame detector in this circuit, we used infrared (IR) detector and Arduino Uno to manage data from flame detector.

Circuit Schematic

Figure 1. Circuit schematic of aircraft hangar fire alarm system using flame detector and arduino uno (Source: https://circuitdigest.com/)

Component Part
  1. Arduino Uno
  2. IR based flame sensor module
  3. Resistors
  4. LED
  5. Buzzer
Description

Circuit schematic like in Figure 1 above is Circuit Schematic Aircraft Hangar Fire Alarm System using Flame Detector and Arduino Uno. Flame sensor module used to detect the light and op-amp to control the sensitivity of flame detection. In aircraft hangar, this flame sensor is used to detect fire and provide HIGH signal upon the detection. Arduino Uno is used to reads the signal and provides alert by turning on buzzer and LED.

Flame Sensor 

A flame detector is one of the sensor that designed to detect and respond the presence of a flame or fire. In this aircraft hangar fire alarm system we used IR flame detector based on the YG1006 sensor which is a high speed and high sensitive NPN silicon phototransistor. This sensor module can detect infrared light with a wavelength ranging from 700nm to 1000nm and its detection angle is about 60°.  

Image Courtesy of Circuitdigest

This sensor module consists of a photodiode (IR receiver), resistor, capacitor, potentiometer, and LM393 comparator in an integrated circuit. We can adjust the sensitivity by varying the on board potentiometer. We need voltage between 3.3v and 5v DC for this sensor, with a digital output. Logic high on the output indicates presence of flame or fire. Logic low on output indicates absence of flame or fire.

Working of Flame Sensor with Arduino

Arduino Uno is a open source microcontroller board based on ATmega328p microcontroller. It has 14 digital pins (out of which 6 pins can be used as PWM outputs), 6 analog inputs, on board voltage regulators etc. 


Image Courtesy of Circuitdigest

Arduino Uno has 32KB of flash memory, 2KB of SRAM and 1KB of EEPROM. It operates at the clock frequency of 16MHz. Arduino Uno supports Serial, I2C, SPI communication for communicating with other devices. The table below shows the technical specification of Arduino Uno.

Article Source:

https://circuitdigest.com/microcontroller-projects/arduino-flame-sensor-interfacing

Thursday, November 21, 2019

Circuit Schematic Ultrasonic Fuel Level Indicator Based on Ardunio Nano

Eltronicschool. - The various fuel level in the vehicle can be detected and indicated easily using electronic devices like the circuit fuel level indicator. Using popular modules like Arduino, Ultrasonic sensor, and some of resistor and LEDs, we can build the system or device which can detect and indicate the fuel level in the vehicle.

In here we will show you one project how to build fuel level indicator based on Arduino Uno that can detect the various fuel level using ultrasonic sensor and transmitted to the atmosphere and recieved to indicate using LED light. Transmitter and reciever modul that will be used in this project is nRF24L01 wireless Tx/Rx module.

Circuit Schematic

Figure 1. Circuit of Ultrasonic Fuel Level Indicator Transmitter (Source: https://www.homemade-circuits.com/)
Figure 1. Circuit of Ultrasonic Fuel Level Indicator Reciever (Source: https://www.homemade-circuits.com/)

Component Part

     A. Trasmitter

  1. Arduino NANO - 1no
  2. Ultrasonic sensor module HC-SR04 - 1no
  3. nRF24L01 wireless Tx/Rx module - 1no

     B. Reciver

  1. Arduino NANO - 1no
  2. Ultrasonic sensor module HC-SR04 - 1no
  3. nRF24L01 wireless Tx/Rx module - 1no
  4. LEDs as shown in the following diagram - 4nos
  5. Piezo buzzer - 1no
  6. 330 Ohm 1/4 watt resistors - 4nos

Description

Circuit schematic like in Figure 1 and Figure 2 above is transmitter and reciever of ultrasonic fuel level indicator based on Arduino. There are two parts of this circuit, these are transmitter and reciever with the same component in tow part is nRF24Lo1 wireless Tx/Rx module.

How it works

Accordingly Homemade Circuit site describe there are a pair of ultrasonic sensors in the module. One senor sends the ultrasonic frequency or the wave towards the fuel surface. The waves collide with the fuel surface and reflect back towards the module. The reflected ultrasonic waves are captured by the second sensor unit, and sent to the Arduino.

The Arduino compares the reflected ultrasonic time with the reference time of the tank "full height" and creates an estimation of the instantaneous height or the level of the fuel.

The information is then encoded and forwarded it to the nRF24L01 wireless module. The nRF24L01 module finally converts the code into RF signal and transmits it into the atmosphere for the receiver unit to capture the signal.

And now you can read more about the project Ultrasonic Fuel Level Indicator from original source using link HERE.

Wednesday, April 25, 2018

Circuit Schematic of Upto 40KHz Frequency Counter using Arduino UNO

Eltronicschool. - Do you want to build by your self using Arduino UNO and also LCD screen in this time, Frequency counter? If you want do it, maybe you can design it using the circuit schematic look like shown in Figure 1 below.

Using this circuit schematic, frequency counter will count upto 40KHz and displayed in LCD screen 16 x 2. Maybe the circuit schematic of Upto 400KHz frequency counter is very simple and easy to build.

Circuit Schematic

Figure 1. Circuit schematic of upto 40KHz frequency counter using Arduino UNO and LCD screen 16x2 (Source: Circuitstoday.com)

Component Part
  1. Arduino UNO
  2. Resistor
  3. LCD screen 16x2
  4. Variable resistor
Description

Circuit schematic like in Figure 1 above is upto 40KHz frequency counter using Arduino UNO. Using this circuit schematic completed with source code, will allow you to enjoy frequency counter displayed in LCD screen 16x2. Using this circuit we can minimize the external component to count the frequency.

How it works

According Circuitstoday site describe the frequency to be counted is connected to digital pin 12 of the arduino. pulseIn() function is used here for counting the frequency connected to pin 12. pulseIn() function counts the number of pulses (HIGH or LOW) coming to a particular pin of the arduino. The general syntax of this function is pulseIn(pin, value, time) where pin is the name of the pin, value is either HIGH or LOW and time is time for which the function to wait for a pulse. The function returns zero if there is no valid pulse with in the specified time. The pulseIn() function can count pulses with time period ranging from 10 μS to 3 minutes. For more about cource code here.

Thursday, March 8, 2018

Circuit Schematic Arduino-based Front Office Visitor Alarm

Eltronicschool. - This is one circuit schematic for you who want to implement your Arduino in this time. With this circuit schematic, now you can learn more to connect and program your project based on Arduino microcontroller.

In this time, eside we will show you circuit schematic, we also will give you the description of this circuit and the last we will give you the link to read more about this circuit schematic from original source.

Circuit Schematic

Figure 1. Circuit Schematic Arduino-based Front Office Visitor Alarm (Source: Electronicsforu)

Component Part




Description

Circuit schematic like in Figure 1 above is Circuit Schematic Arduino-based Front Office Visitor Alarm. Electronicsforu site describe that Arduino Uno operates off a 9V DC power supply. It is based on ATmega328 microcontroller and has 14 digital input/output pins, six analogue input pins, a USB connection for programming the onboard microcontroller, a 9V-12V DC power jack, an ICSP header and reset button. It is operated with a 16MHz crystal oscillator and contains everything needed to support the microcontroller.

Reed switch S1 is connected to digital pin 2 of Arduino as the input. PZ1 and LED1 are connected to digital pins 7 and 8, respectively, as outputs. LED1 is connected through a 220-ohm resistor.

Initially, when the door is closed, the magnet on the door is close to the reed switch (normally-open type) on the door frame and hence the reed switch is closed. So pin 2 of Arduino is ‘high.’

When the door is opened, the reed switch opens and pin 2 of Arduino becomes ‘low’ through a 10-kilo-ohm pull-down resistor. This turns on piezo buzzer PZ1 and LED1. After a few seconds, PZ1 and LED1 automatically turn off.

The software (office_visitor.ino) for this project is written in Arduino programming language. Arduino Uno is programmed using Arduino IDE software. ATmega328 on Arduino Uno comes with a bootloader that allows you to upload new code to it without using any external hardware programmer.

And now you can read more about the Circuit Schematic Arduino-based Front Office Visitor Alarm circuit schematic from original source using link HERE.

Wednesday, January 10, 2018

Arduino Project: Metal Detector using Arduino Nano

Eltronicschool. - This is one of the best Arduino project for you who want to develop your ability in metal detector system in this time. This article will discuss to you about how to build metal detector using Arduino Nano.

Beside we will give you the circuit schematic of metal detector using Arduino Nano and also the simple description of this project, and the last we will give you the link to read more about this project from original source.

Circuit Schematic

Component Part
  1. Arduino Nano
  2. Coil
  3. 10nF capacitor
  4. Buzzer
  5. The 1k resistor
  6. 330-ohm resistor
  7. LED
  8. 1N4148 diode
  9. Breadboard or PCB
  10. Connecting jumper wire
  11. 9v Battery
Description

Circuit schematic like in Figure 1 above is metal detector using Arduino Nano. Accordingly Circuit Digest site describe that Metal Detector is a security device which is used for detecting metals which can be harmful, at various places like Airports, shopping malls, cinemas etc. Previously we have made a very simple Metal detector without a microcontroller, now we are building the Metal Detector using Arduino. In this project, we are going to use a coil and capacitor which will be responsible for the detection of metals. Here we have used an Arduino Nano to build this metal detector project. This is very interesting projects for all electronics lovers. Wherever this detector detects any metal near it, the buzzer starts beeping very rapidly.

Arduino Nano is used for controlling whole this Metal Detector Project. A LED and Buzzer are used as metal detection indicator. A Coil and capacitor is used for detection of metals. A signal diode is also used for reduce the voltage. And a resistor for limiting the current to the Arduino pin.

Saturday, December 2, 2017

Microcontroller Project: Gesture Controlled Mouse Using Arduino Nano and Accelerometer

Eltronicschool. - This is one of the best project for you who want to develop your ability in Arduino programming and design in this time. This article will discuss to you about Arduino Nano and accelerometer for gesture controlled mouse.

Beside we will give you the circuit schematic of gesture controlled mouse using Arduino Nano and also the simple description of this project, and the last we will give you the link to read more about this project from original source.

Circuit Schematic

Figure 1. Circuit schematic of Gesture Controlled Mouse Using Arduino Nano and Accelerometer (Source: Circuitstoday)

Component Part
  1. MPU 6050
  2. Arduino Nano
  3. ASK433
Description

Circuit schematic like in Figure 1 above is Gesture Controlled Mouse Using Arduino Nano and Accelerometer. AIR Mouse is also called gesture-controlled mouse and it works based on hand gesture. In this project an accelerometer is used for measuring the tilt of hand in X and Y direction and moves the cursor according the tilt.

In the project two types of circuit are used, one is the transmitter circuit and other is the receiver circuit. Transmitter circuit makes use of MPU6050 series of accelerometer, which is connected to Arduino through I2C communication. The data is transferred to receiver Circuit using RF module, ASK433. Two switches are also used in transmitter circuit to work as Left Click and Right Click.

In the receiver side an Arduino Leonardo is used. The purpose of using Arduino Leonardo is that it supports HID (Human Interface Device). HID allows us to control the mouse and Keyboard of our PC or Laptop.

And now you can read more about this article Gesture Controlled Mouse Using Arduino Nano and Accelerometer from original source using link HERE.

Monday, November 20, 2017

Microcontroller Project: Car Speed Detector Using Arduino Nano

Eltronicschool. - This is one of the best project for you who want to develop your ability in Arduino programming and design in this time. This article will discuss to you about Arduino Nano for car speed detector.

Beside we will give you the circuit schematic of car speed detector using Arduino Nano and also the simple description of this project, and the last we will give you the link to read more about this project from original source.

Circuit Schematic

Component Part
  1. IR Sensor
  2. Arduino Nano
  3. LCD Module
Description

Circuit schematic like in Figure 1 above is Car Speed Detector Using Arduino Nano. In this project I am going to show you how to measure the speed of running car (or man) from outside. Police department uses this type of system to prevent over speed of vehicles. Our project is a little different from the system used by police but the overall car speed detector concept is same.

In this project, two IR sensors are placed apart on one side of road. When any vehicle crosses the sensors, the internal timer of Arduino counts the time between activation of sensor. Now speed is measured by using simple distance time relationship.

And now you can read more about this article Car Speed Detector Using Arduino Nano from original source using link HERE.

Tuesday, August 8, 2017

How to measure the voltage using voltage sensor and arduino module

Eltronicschool. - This is one project for you who want to measure the voltage from 0 until 25V using voltage sensor module and Arduino microcontroller in this time. Using this project you will get many information to make sketch, schematic, voltage sensor module and other.

Voltage Sensor Module

Image Courtesy of www.henrysbench.capnfatz.com

Schematic Diagram

Image Courtesy of www.henrysbench.capnfatz.com

Connection with Arduino

Image Courtesy of www.henrysbench.capnfatz.com

Description

Accordingly Henrysbench blog that also published this project describe that the Arduino analog input is limited to a 5 VDC input.   If you wish to measure higher voltages,  you will need to resort to another means.  One way is to use a voltage divider. It is fundamentally a 5:1 voltage divider using a 30K and a 7.5K Ohm resistor.

Keep in mind, you are restricted to voltages that are less than 25 volts.   More than that and you will exceed the voltage limit of your Arduino input.

Sketch

To get the program to measure the voltage sensor and arduino module, you can use the sketch with visit here.