I need a logic inverter that lights up an LED when the stepper driver is enabled (the EN pin is reversed). I created the following diagram:
I fear that The placement of the EN pin in the circuit will hinder the transistor? Could someone tell me if this is correct or not? And if not, how would I fix it?
EN Pin is active low input, when pulled LOW(logic 0) the A4988 driver is enabled. By default this pin is pulled low so the driver is always enabled, unless you pull it HIGH.
Should work fine, the En pin being pulled low would not interfere with the transistor or LED. The switch would pull it high, turn on the transistor and turn off the LED.
Dont forget to change the topic title & add "SOLVED".
Since you already have an arduino, why not just connect a wire from the enable pin to a digital input and
read it with digitalRead() ? (and then turn on a led connected to a digital output )