omdazz_WS2812b/top.v
2026-08-07 20:24:04 +03:00

17 lines
334 B
Verilog

module top(
input wire CLOCK_50,
input wire [4:4] D_INP,
output wire WS2812_OUT
);
omdazz_WS2812b #(
.WS2812_NUM(10 - 1),
.CLK_FRE(50_000_000),
.LED_MASK(10'b11_1111_1111) // LED0 и LED2
) u_ws2812 (
.CLOCK_50(CLOCK_50),
.WS2812 (WS2812_OUT)
);
endmodule