VHDL Code for External Light Control Using Relays

vhdl
relay
light control
digital logic
hardware description language

This page provides VHDL source code for controlling external lights using relays.

library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
library unisim;
use unisim.vcomponents.all;

entity light is
    Port (
        cntrl1, cntrl2 : in STD_LOGIC;
        led : out STD_LOGIC
    );
end light;

architecture Behavioral of light is
begin
    led <= cntrl1 or cntrl2;
end behavioral;

1x8 Demultiplexer VHDL Source Code

VHDL source code for a 1x8 demultiplexer (DEMUX) implementation. Includes code and related VHDL resources.

vhdl
demultiplexer
source code
VHDL Code for a 2 to 4 Decoder

VHDL Code for a 2 to 4 Decoder

This article provides VHDL source code for a 2-to-4 decoder, along with a block diagram and truth table for understanding its operation.

vhdl
decoder
2 to 4 decoder

3-to-8 Decoder VHDL Source Code

VHDL source code for a 3-to-8 decoder implementation, demonstrating a basic digital logic circuit.

vhdl
decoder
source code