- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to make an LED light by writing VHDL code program? i am just leanning VHDL.thank you !
Link Copied
5 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It is very easy. Refer to below:
library IEEE; use IEEE.std_logic_1164.all; Entity LED_light is port ( LED_out : out std_logic); end LED_light; Architechture RTL of LED_light is begin LED <= '1'; end RTL;- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
library IEEE;
use IEEE.std_logic_1164.all; Entity LED_light is port ( LED_out : out std_logic); end LED_light; architecture RTL of LED_light is begin LED_out<= '1'; end RTL;- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
--- Quote Start --- It is very easy. Refer to below: library IEEE; use IEEE.std_logic_1164.all; Entity LED_light is port ( LED_out : out std_logic); end LED_light; Architechture RTL of LED_light is begin LED <= '1'; end RTL; --- Quote End --- Hi, Do u know how to control the brightness of the output LED in Quartus 2?. Ex. OFF (Stage1)>Dim (Stage2)>Full brightness (Stage3). I just need the logic, no need to type the full code here. Any help would be appreciated. Thanks, Anish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes it is easy, just google for PWM verilog, or PWM VHDL.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
interesting. I thought only PIC can do this.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page