view lunalcd2/src/vsrc/bl_current_sink.v @ 72:c2a3670c7aca

lunalcd3.pcb: manually add bottom strap to LCD footprint
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 18 Nov 2021 06:11:27 +0000
parents d5d14b426faa
children
line wrap: on
line source

module bl_current_sink (GND, Vio, BL_EN, LEDK);

input GND, Vio, BL_EN;
output [1:3] LEDK;

wire SET;

MAX1916 MAX1916 (.GND(GND),
		 .EN(BL_EN),
		 .SET(SET),
		 .LEDK(LEDK)
	);

current_select cursel ( .Vio(Vio),
			.SET(SET)
	);

endmodule