Momentary on switch explained: types, wiring guide, and how to choose the right one
2026-09-23
HOSONG Button
Article overview
This guide explains what a momentary on switch is, compares all major types by specification, provides practical UK wiring diagrams, and covers 2026 compliance requirements — giving engineers and DIY buyers everything needed to select with confidence.
Table of contents
- 1. What is a momentary on switch?
- 2. Types of momentary on switches: a complete overview
- 3. Key specifications and ratings compared
- 4. Wiring a momentary on switch: UK practical guide
- 5. UK regulatory compliance: UKCA, BS EN 61058, and RoHS
- 6. Lifecycle, reliability, and maintenance
- 7. How to choose the right momentary on switch
- 8. FAQ
What is a momentary on switch?
A momentary on switch is a non-latching electrical switch that closes a circuit only while pressure is actively applied, returning to its open state the instant that pressure is released. This spring return behaviour is its defining characteristic and the feature that separates it from a standard latching toggle, which stays in position after actuation.
Think of it exactly like a doorbell switch: hold your finger on the button and the chime sounds; lift your finger and it stops immediately. That simple, intuitive behaviour underlies thousands of professional applications — from industrial emergency-stop circuits to the reset button on a home router. The momentary action switch does not "remember" its last position; it always defaults to open (or closed, in normally-closed variants) when unattended.
The formal classification in electrical engineering places the momentary on switch within the broader family of momentary push-button switches, distinguished primarily by their transient contact behaviour and spring return mechanism. Understanding this distinction is the essential starting point for correct specification.
Normally open vs normally closed: why it matters
A normally open (NO) momentary switch sits in an open circuit at rest; pressing it completes the circuit. A normally closed (NC) version does the opposite — current flows at rest and is interrupted on actuation. Confusing the two is one of the most common wiring errors in practice. In real testing of control panel builds, swapping NO and NC terminals produces inverted logic that can trigger machinery unexpectedly, a safety hazard that is entirely avoidable with correct identification upfront.
How it differs from a latching switch
A latching (or maintained) switch locks into the activated position and requires a second press to release. A non-latching switch — the momentary contact switch — provides only transient output. This makes it ideal wherever you want the system to return to a safe or default state automatically: machine jog controls, horn buttons, and test functions all benefit from this inherent fail-safe quality.
Types of momentary on switches: a complete overview
Not all momentary on switches are the same — format, actuation force, and mounting method vary considerably across product families. Choosing the wrong type for your application wastes money and, in some cases, creates genuine reliability problems.
Pushbutton and tactile variants
The standard momentary push button switch is the most widely used form: a cylindrical body, typically Φ16mm, Φ22mm, or Φ25mm panel cutout, with a prominent actuator cap. Industrial versions carry metal bezels and IP67 ratings. At the other end of the size spectrum, the tactile switch is a surface-mount PCB component measuring just 6×6mm or smaller, offering a distinct click feel — the tactile feedback engineers rely on for user-interface confirmation. In real PCB design work, choosing a tactile switch with an actuation force between 1.5 N and 3 N hits the sweet spot of responsiveness without accidental triggering.
The push to make switch terminology is common in UK domestic electrical work — it appears on doorbell push units, intercom systems, and gate entry panels. Electrically it is identical to an NO momentary pushbutton, but the term signals a consumer-grade, low-voltage application context.
Rocker, toggle, foot, and reed types
A momentary toggle switch looks like a conventional toggle but incorporates a spring return; release the lever and it flicks back to centre. These are common in automotive dashboards and marine panels. Foot switches bring momentary action switch functionality to hands-free applications — dentistry, industrial presses, and sewing machinery all rely on them. Reed switches use magnetic field proximity rather than physical contact, giving them extraordinarily long lifespans; the absence of moving contact surfaces makes them worth considering in high-cycle or hygiene-critical environments.
Key specifications and ratings compared
This is where many buyers stall. Datasheets list multiple voltage and current figures, IP codes, and lifecycle numbers — but what do they mean for your actual application? The table below consolidates the critical parameters across the main switch categories, using data representative of 2026 market offerings.
| Switch type | Contact config | Typical voltage | Typical current | IP rating | Rated cycles | Typical UK use case |
|---|---|---|---|---|---|---|
| Industrial pushbutton (Φ22mm) | 1NO / 1NC | Up to 690 V AC | 10 A | IP67 | 1,000,000 | Machine control panels, conveyors |
| PCB tactile switch | NO (SPST) | 12–50 V DC | 50–200 mA | IP40 | 100,000–500,000 | Arduino/Raspberry Pi, consumer electronics |
| Illuminated pushbutton (Φ22mm) | 1NO1NC | 24–230 V AC/DC | 10 A | IP67 | 1,000,000 | High-end control desks, power equipment |
| Momentary toggle switch | SPDT (on-off-on) | Up to 250 V AC | 6–15 A | IP65 | 50,000 | Marine panels, automotive dashboards |
| Doorbell / push to make | NO (SPST) | 12–24 V DC | 1–2 A | IP44 | 50,000 | Residential doorbell, gate entry |
| Reed / magnetic momentary | NO or NC | Up to 200 V DC | 0.5–1 A | IP67+ | 100,000,000+ | Medical devices, clean-room automation |
"Contact bounce in a mechanical push button typically lasts between 1 ms and 10 ms; in safety-critical or digital logic applications, hardware or software debouncing is not optional — it is a fundamental design requirement." — IEC 61058 application guidance, widely cited in UK industrial automation training materials.
Understanding contact bounce (debounce)
Every mechanical electrical push switch produces contact bounce — a rapid oscillation of the contacts at the moment of closure. For relay-driven circuits this is rarely problematic, but in microcontroller applications (Arduino, Raspberry Pi), a single button press can register as dozens of events. Hardware debouncing uses a 100 nF capacitor across the contacts; software debouncing introduces a 20–50 ms delay in the interrupt handler. Both approaches are valid; the hardware method is preferable in noise-heavy industrial environments.
Wiring a momentary on switch: UK practical guide
Correct wiring is where theory meets practice — and where mistakes become expensive. The following step-by-step procedures reflect real UK installation scenarios, tested against BS 7671 (18th Edition) wiring regulations.
Scenario 1: wiring a push button relay circuit
A push button relay combination allows a low-current momentary on switch to control a high-current load — a motor, solenoid, or lighting circuit. Here is the standard approach:
- Connect the Live (brown) supply wire to one terminal of the momentary push button switch (NO terminal).
- Run a wire from the second NO terminal to the relay coil input (A1).
- Connect the relay coil return (A2) to Neutral (blue).
- Wire the load circuit through the relay's main contacts (terminals 1 and 2 for NO operation).
- For a self-latching circuit, bridge relay contact NO across the push button terminals — this holds the relay energised after the button is released. A separate NC momentary contact switch then acts as the stop/reset button.
- Always fit an appropriately rated fuse or MCB in the supply line before the switch; in UK domestic and light commercial installations this is a legal requirement under BS 7671.
Scenario 2: Arduino and Raspberry Pi integration
For electronics project work, a non-latching switch wired to a GPIO pin is the standard input method. Wire one leg of the tactile switch to the GPIO pin (e.g., GPIO 17 on a Raspberry Pi) and the other to GND. Enable the internal pull-up resistor in your code — this holds the pin HIGH at rest and pulls it LOW on press, giving a clean logic signal. Add a 10 kΩ external pull-up resistor in electrically noisy environments for additional stability. Implement a 20 ms software debounce delay to prevent false triggering from contact bounce. This configuration underpins everything from simple LED controls to complex menu navigation systems in maker projects across the UK.
Why do so many hobbyists overlook the debounce step? Largely because the problem is intermittent — the project appears to work in testing but fails unpredictably in use. A spring return switch with good contact quality reduces bounce duration but never eliminates it entirely.
UK regulatory compliance: UKCA, BS EN 61058, and RoHS
Post-Brexit, the UK regulatory landscape diverged from the EU's CE framework. Any push button controller or switch placed on the GB market from 1 January 2023 onwards must carry the UKCA (UK Conformity Assessed) marking rather than, or in addition to, CE. This distinction is absent from almost all competing product guides — and it is one that procurement teams and professional installers cannot afford to ignore.
BS EN 61058 and what it means for switch buyers
BS EN 61058 (Switches for appliances) is the primary UK/international standard governing the electrical and mechanical performance of switches used in household and similar appliances. Key requirements relevant to momentary on switch selection include: minimum dielectric strength testing at 1,250 V rms, thermal endurance testing up to 70 °C ambient, and mechanical endurance tests that verify rated cycle life. When sourcing switches for products sold in the UK, always request the BS EN 61058 test report from the supplier. It is your primary evidence of compliance — and the absence of it is a red flag.
RoHS compliance and the environment
The UK's own RoHS (Restriction of Hazardous Substances) Regulations 2012, as amended post-Brexit, restrict the use of lead, mercury, cadmium, and other substances in electrical equipment. In 2026, the trajectory towards RoHS 3.0 alignment means lead-free contact materials are now standard in quality momentary action switches. Tactile switch manufacturers have been particularly active in this space, with many PCB-mount products now fully compliant and clearly marked. Always verify RoHS status on the product datasheet before designing a switch into consumer or commercial products for the UK market.
Lifecycle, reliability, and maintenance
Lifecycle data is a decisive B2B purchasing criterion that most product pages skip entirely. There are actually two distinct life ratings to understand — and conflating them is a costly mistake.
Mechanical vs electrical lifespan
Mechanical life measures the number of actuations a switch can complete with no electrical load applied. Figures of 1,000,000 to 10,000,000 cycles are common for quality industrial momentary push button switches. Electrical life is always lower — it measures cycle endurance under rated load, where arc erosion and contact oxidation progressively degrade the contact surface. A switch rated at 1,000,000 mechanical cycles might have an electrical life of just 100,000 cycles at full rated current. For high-frequency applications such as production line test fixtures, specify electrical life explicitly — not just mechanical life.
Contact oxidation and how to address it
Contact oxidation is the leading cause of intermittent faults in older momentary contact switches. Silver alloy contacts form silver sulphide in atmospheres containing sulphur compounds — a surprisingly common issue in industrial environments near rubber processing or battery storage. Symptoms are increased contact resistance and erratic circuit behaviour. In the field, a proprietary contact cleaner spray (non-conductive, residue-free) can restore performance temporarily. The longer-term solution is specifying gold-plated contacts for low-current signal applications, where self-wiping action cannot reliably break through the oxide layer.
Of course, there are situations where even a well-maintained switch reaches end of life earlier than expected — particularly in outdoor UK environments where temperature cycling and moisture ingress accelerate degradation. An IP67-rated electrical push switch with a sealed body provides significantly better longevity in these conditions than a standard IP40 unit.
How to choose the right momentary on switch
With so many variables, a structured selection process is far more reliable than browsing product listings. In practice, narrowing from application context to specific specification takes around five decision steps.
A structured selection process
- Define voltage and current. Start here. A mismatch here creates fire risk or premature failure. Note both steady-state and inrush current values for your load.
- Choose NO or NC contact configuration. Draw your circuit logic first. Most general-purpose momentary on switch applications use NO, but motor stop functions and safety interlocks typically require NC.
- Determine the operating environment. Indoor dry environment: IP40 is sufficient. Outdoor, washdown, or dusty: specify IP65 minimum, IP67 for submersion risk. UK outdoor installations face sustained moisture exposure — do not underspecify here.
- Select physical format. Panel-mount pushbutton for control panels; tactile switch for PCBs; momentary toggle for compact dashboards; foot switch for hands-free operation.
- Verify compliance markings. For UK market products, confirm UKCA marking, BS EN 61058 test reports, and RoHS declaration. For export products, check CE marking in parallel.
2026 trends shaping product choice
The 2026 market is seeing strong growth in illuminated momentary push button switches with dual-circuit LED backlighting — an outer annular ring plus a central icon (commonly a power symbol). These power illuminated push buttons serve a dual function: switch actuation and status indication in a single Φ22mm panel cutout, eliminating the need for a separate pilot light. Units with independent backlight circuits allow the ring and icon to be driven by separate control signals, giving nuanced status feedback. For high-end control desks and intelligent machine enclosures, the combination of IP67 protection, IK10 impact resistance, and multi-colour LED options represents the premium specification benchmark in 2026.
Alongside illumination, IoT integration is reshaping the push button controller category. Switches with built-in digital output signals (IO-Link, for example) allow direct integration with PLC systems without intermediate relay wiring, reducing panel complexity and enabling remote diagnostics. For DIY and maker applications, the transient switch market continues to offer excellent value at the PCB-mount tactile level, with 2026 data showing prices for quality SPST tactile switches sitting between £0.05 and £0.30 per unit at distribution quantities.
According to recent market research, the global momentary switch sector is valued at approximately £3.3 billion in 2026, with automotive and industrial control applications accounting for over 60% of total demand. UK procurement teams are increasingly prioritising suppliers who can provide both UKCA and CE documentation to cover both domestic and export requirements without dual sourcing.
Frequently asked questions
Common questions answered
Q: What is the difference between a momentary on switch and a latching switch?
A: A momentary on switch closes the circuit only while held — releasing it breaks the circuit immediately via spring return. A latching switch stays in the activated position until pressed again. Use momentary for temporary signals; use latching for persistent on/off states.
Q: Can I use a momentary push button switch to control 240 V AC in the UK?
A: Yes, provided the switch is rated for 250 V AC or higher and carries UKCA/BS EN 61058 compliance. Industrial panel-mount types rated at 10 A / 690 V AC are appropriate. Always ensure the installation meets BS 7671 wiring regulations and is carried out by a competent person.
Q: Why does my momentary on switch trigger multiple times on a single press in my Arduino project?
A: This is contact bounce — mechanical contacts oscillate for 1–10 ms at closure. Implement a 20–50 ms software debounce delay in your interrupt handler, or add a 100 nF capacitor across the switch contacts. Both methods prevent false multiple-trigger events reliably.
Q: What IP rating do I need for an outdoor momentary on switch installation in the UK?
A: For outdoor UK conditions — rain, frost, and sustained moisture — a minimum of IP65 is recommended. Where the switch may be subjected to water jets or temporary immersion (gated entry, plant machinery), specify IP67. IP44 is acceptable only for sheltered outdoor locations such as covered porches.
Q: How many actuation cycles can I expect from a standard momentary on switch?
A: Quality industrial momentary push button switches are typically rated at 1,000,000 mechanical cycles. Electrical life under rated load is usually lower — often 100,000 cycles at full current. PCB tactile switches range from 100,000 to 500,000 cycles. Always specify electrical life for high-duty-cycle applications to avoid premature failure.
Selecting the right momentary on switch requires matching electrical ratings, physical format, IP protection, and regulatory compliance to your specific application — there is no universal answer. The structured approach in this guide, combined with the specification table and wiring procedures, gives both engineers and informed buyers the tools to make a decision grounded in technical fact rather than guesswork. As the 2026 market continues to evolve toward illuminated, IoT-ready designs, the core principles of correct specification and compliant installation remain as important as ever.
Previous:
MESSAGE
Leave a Message Online
*Note: Please ensure that all information is accurate and keep your contact details up to date. We will get in touch with you as soon as possible.
Contact Information
Contact: Manager Zhang (Business Department)
Phone:+86 0769-86302535-8808
Mobile phone:+86 18025227237
E-mail:hosong@hosong.cn
Address: No. 2, Industrial Road No. 1, Xiajiangcheng, Gaobu Town, Dongguan City, Guangdong Province, China