view venus/src/periph/led_npn.v @ 94:4502eec1e805

D405: use Nexperia part sourced from Digi-Key direct The previously selected part was from a Digi-Key marketplace vendor, and they seem to not actually have that part, as the order has been in limbo for over a month - so I put in the time and effort to look around, and found a readily available equivalent part from Nexperia.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 11 Jan 2022 19:11:22 +0000
parents 06e95ff0023b
children
line wrap: on
line source

/*
 * This module captures the circuit for showing the state of a digital signal
 * on a LED using an NPN transistor instead of a MOSFET, like we did for PWL
 * on Caramel2.
 */

module led_npn (GND, VBAT, Signal);

input GND, VBAT, Signal;

wire R_to_LED, LED_to_Q;

resistor R (VBAT, R_to_LED);
basic_LED led (.A(R_to_LED), .C(LED_to_Q));
transistor_slot Q (.E(GND), .B(Signal), .C(LED_to_Q));

endmodule