Security System Using VHDL
#1

[attachment=3641]

Security System Using VHDL


Project Members
Amal Shanavas
Aneez I
Ijas Rahim
Renjith S Menon
Sajid S Chavady


Introduction to VHDL

VHDL-abbreviation of Very high speed integrated circuit Hardware Description Language
VHDL resulted from the work done in the ˜70s and early ˜80s by the U.S Department of Defense.
In 1986,VHDL was proposed as an IEEE standard
Its roots are in the ADA language



Why Use VHD
L
Semiconductor devices dimensions have shrunk
Reduces design time for a large digital system because designer can model the circuit in a program that simulates the circuit operation
Avoids glitch which occurs in digital circuits
Unlike other programs its statements are inherently concurrent
To create sophisticated electronic products



Basic Building Blocks
ENTITY

It is the most basic building block in a design
Entity block describes the interface for the design which defines input and output logic signals of the circuit.


ARCHITECTURE

All entity that can be simulated have an architecture description
The architecture describes the internal operation of the design
Single entity can have multiple architectures
Three types: : Behavioral Modeling : Structural Design : Sequential behavior



How To Write VHDL Program

Active-HDL 4.2 software has been used for the design synthesis and simulation
The source code written using the normal TEXT editor,then saved as a VHDL file with '.vhd'extension and transferred to any of the VHDL design compiler.If the compilation shows no error(s),the file can be simulated,synthesized and implemented with FPGA
Circuit Diagram
High-level


Source Code

library IEEE;
use IEEE.STD_LOGIC_1164.all;
ENTITY alarm_cntrl is
port(fire,temperature,alarm_disable,main_disable:in STD_LOGIC;
fire_alarm:OUT STD_LOGIC);
END alarm_cntrl;
architecture synth of alarm_cntrl is
begin
process(fire,temperature,alarm_disable,main_disable)
begin
if ((fire='1')and (main_disable='0'))then
fire_alarm<='1';
else
fire_alarm<='0';
end if;
end process;
end synth;
Block Diagram-SENSOR
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: arctan using vhdl, designing a car security system using vhdl, security system using vhdl, car security sistem vhdl, network security in bluetooth using vhdl, security monitoring system using vhdl, synth,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  INTEGRATED EMERGENCY RESPONSE SYSTEM USING EMBEDDED SYSTEM seminar presentation 1 9,044 19-11-2018, 08:40 PM
Last Post:
  Positioning System using Bluetooth Technology project topics 1 1,537 01-12-2014, 02:49 AM
Last Post: ecosierra51
  Micro Controller based Security System using Sonar seminar projects crazy 3 3,641 28-09-2014, 05:50 PM
Last Post: Guest
  PIC BASED INTELLIGENT TRACKING SYSTEM USING SOLAR POWER project report helper 3 4,099 27-03-2014, 05:35 AM
Last Post: Guest
  DESIGN AND IMPLEMENTATION OF RADIX-4 BOOTH MULTIPLIER USING VHDL project computer science technology 8 24,783 12-11-2013, 05:36 AM
Last Post: Guest
  Home Security System A Project Report electronics seminars 16 26,090 22-04-2013, 12:58 PM
Last Post: computer topic
  Automatic power meter reading system using GSM network Electrical Fan 16 14,338 11-04-2013, 11:02 AM
Last Post: computer topic
  FingerPrint Based Security System seminar topics 5 8,202 10-03-2013, 05:23 PM
Last Post: Guest
  POWER SYSTEM STABILITY STUDIES USING MATLAB full report seminar topics 14 18,649 04-01-2013, 11:34 AM
Last Post: seminar details
  AUTOMATIC VEHICLE ACCIDENT DETECTION AND MESSAGING SYSTEM USING GSM AND GPS MODEM smart paper boy 14 10,737 02-01-2013, 06:16 PM
Last Post: naidu sai

Forum Jump: