You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module LowSideSwitch:
fet = new Mosfet_nchannel
gate_resistor = new Resistor
pulldown_resistor = new Resistor
freewheel_diode = new Diode
power = new Power
load = new Load
input = new Pair
# connect up circuit
input.io ~ gate_resistor.p1; gate_resistor.p2 ~ fet.gate
input.gnd ~ power.gnd
# load and diode between power and fet
power.vcc ~ freewheel_diode.cathode; freewheel_diode.anode ~ fet.drain
power.vcc ~ load.p; load.n ~ fet.drain
# source to ground
fet.source ~ power.gnd
The text was updated successfully, but these errors were encountered:
The
pulldown_resistor
inmosfets.ato:LowSideSwitch
is not connected.generics/mosfets.ato
Line 57 in 09ad6ba
The text was updated successfully, but these errors were encountered: