Electronic – What’s the name for a switch that opens its contacts when pressed

switches

The title is probably already enough info. Just an example:

Imagine a power button on the front of a computer that is always connected except when pressed, it disconects for a brief moment.

Best Answer

That's called a normally closed pushbutton.

Most pushbuttons are open when left alone, and pushing them closes the electrical connection. These are called normally open. Normally closed pushbuttons do exist, but will be harder to find and more expensive when you do.

Nowadays, pushbuttons are usually just inputs to microcontrollers, so their polarity doesn't matter to their function. The micro can tell whether the button is pressed or released at any time, and then take the appropriate action.

For example, you could use a normally open pushbutton into a micro, which can then interrupt power to something else when the button is pressed. Even without a micro, you could use a relay that allows power to flow when not energized. Pushing a normally open pushbutton would energize the relay, which would interrupt power. This has the advantage of the power and possibly high voltage not being near the pushbutton where you have to worry about proper isolation. The pushbutton also need not be rated for the full power current. It only needs to handle enough voltage and current to energize the relay.