+ All Categories
Home > Documents > INFORME 7 digitales

INFORME 7 digitales

Date post: 06-Oct-2015
Category:
Upload: hebert-joffredy-tellez-aldana
View: 2 times
Download: 0 times
Share this document with a friend
Description:
informe
12
INFORME 7° DE LABORATORIO ELECTRONICA DIGITAL II APLICACIÓN DE LOS CIRCUITOS SECUENCIALES II DETECCIÓN DE UNA CLAVE DE 4 DIGITOS NOMBRES: ALEJANDRO RUBIO, COD: 2420121010 JULIAN ALBERTO AVILA, COD: 2420121020 PRESENTADO A: M.s ING LUISA FERNANDA GALLO SANC!E" UNIVERSIDAD DE IBAGUE FACULTAD DE INGENIERIA INGENIERIA ELECTRONICA V SEMESTRE IBAGUE # TOLIMA 2014 OBJETIVO
Transcript

INFORME 7 DE LABORATORIO ELECTRONICA DIGITAL II

APLICACIN DE LOS CIRCUITOS SECUENCIALES II DETECCIN DE UNA CLAVE DE 4 DIGITOS

NOMBRES: ALEJANDRO RUBIO, COD: 2420121010JULIAN ALBERTO AVILA, COD: 2420121020

PRESENTADO A: M.sc ING LUISA FERNANDA GALLO SANCHEZ

UNIVERSIDAD DE IBAGUEFACULTAD DE INGENIERIA INGENIERIA ELECTRONICA V SEMESTREIBAGUE TOLIMA2014OBJETIVO Familiarizar al estudiante con el diseo de circuitos secunciales empleando lgica Programada

Desarrollo de la prctica

Se emple un diagrama de estado de tal forma en la que se pudiese detectar e identificar a que equivale cada pulsacin en el teclado para poder ser visualizada en el display 7:

library IEEE;use IEEE.std_logic_1164.all;

entity teclado isport (clr, clk: in std_logic; x: in bit_vector(2 downto 0); palabra: out bit_vector(3 downto 0); --Palabra: para detectar la tecla que se esta presionada display: out bit_vector(3 downto 0);--Salida del display (BCD)entrada: in STD_LOGIC; salida : out STD_LOGIC);end teclado;

architecture tec of teclado istype estado is (A,B,C,D,E);--Estadossignal h: estado;signal temporal: STD_LOGIC; signal contador: integer range 0 to 124999 := 0;beginprocess(clr,clk,entrada)beginif (clr = '1') then temporal


Recommended