Skip to content

Feature request: simple example of blinking LED #1

@pdp7

Description

@pdp7

The Doppler readme links to a nice introduction to Verilog video which has a simple example of creating a counter and using the high bits to blink a LED a couple Hz.

Here is the Verilog:
https://opentechlab.org.uk/videos:013:notes#example_1blinking_leds

module top(input clk_100mhz, output [3:1] led);

reg [25:0] counter = 0;
assign led = counter[25:23];
always @(posedge clk_100mhz) counter <= counter + 1;

endmodule

I think it would be nice to have such an example for the Doppler. The LED matrix is awesome but it might make it easier for a Verilog beginner to understand how to blink a single LED.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions