Browse Definitions :
Definition

debouncing

What is debouncing?

Debouncing is removing unwanted input noise from buttons, switches or other user input. Debouncing prevents extra activations or slow functions from triggering too often. Debouncing is used in hardware switches, programs and websites.

Debouncing hardware switches

Physical switches are mechanical devices with a little bit of natural bounce. The springs and metal contacts can cause the connection to be made and broken several times each time the switch is pressed. For simple things, like a light switch, the bounce can't be detected by a human, so it doesn't matter. But, in digital electronics, extra bounces can be detected and interpreted as intentional inputs and cause problems. For example, if you press the change channel button on a TV and the channel changes twice, it may be due to the input not being properly debounced.

Microchip Technology ATtiny817 microcontroller
It is common to add switch debouncing in software with microcontrollers.

Debouncing switches can be done in hardware or software. A simple hardware debouncer can be made with passive components. Using a resistor-capacitor filter with a Schmitt trigger diode can smooth out the transition into a curve. A digital debouncer can be achieved with a set/reset latch. Dedicated integrated circuits for debouncing switches and buttons are available and can be added to a design. All hardware debouncing requires adding extra components and, therefore, adds to the cost of a design.

Adding switch debouncing in software is common with microcontrollers. A switch can be directly connected to the microcontroller input, and a debouncing function can be applied to the input to filter out the physical bounce in the switch.

Debouncing in programming

In programming, debouncing is when a function filters user input before triggering the action. Improperly debounced user input can cause bad performance, double activations or user frustration. Often, a general debouncing function is used instead of writing new code for each input activity. The debouncing function sits after the user input and then calls the target action of the button. Many programming libraries include a pre-built debounce function.

The following example use cases for debouncing functions can be implemented in JavaScript or other programming languages:

  • For a website that has a submit button to place an order, if a user double-clicks the button, they may accidentally buy the order twice. A debounce function would ensure that only one request is submitted.
  • For a site that takes input from a text box with an autofill or suggested search box, debounce can ensure that the input was accepted only after every letter was typed into the box. Other activations could cause poor performance, high server load or user confusion. A debounce function might wait a second or two after the last letter is typed before taking any action.
  • Another example might be a graphic element or message that's programmed to follow the cursor around the screen or as a webpage is scrolled through. This action could run hundreds of times a second and cause poor page performance or high resource utilization. A debounce function could limit the movement script to only run a few times a second to maintain smooth performance.

See in-demand programming languages for developers, explore what it means to do 'everything as code' in IT operations and learn about the different kinds of network switches.

This was last updated in December 2022

Continue Reading About debouncing

Networking
  • subnet (subnetwork)

    A subnet, or subnetwork, is a segmented piece of a larger network. More specifically, subnets are a logical partition of an IP ...

  • secure access service edge (SASE)

    Secure access service edge (SASE), pronounced sassy, is a cloud architecture model that bundles together network and cloud-native...

  • Transmission Control Protocol (TCP)

    Transmission Control Protocol (TCP) is a standard protocol on the internet that ensures the reliable transmission of data between...

Security
  • cyber attack

    A cyber attack is any malicious attempt to gain unauthorized access to a computer, computing system or computer network with the ...

  • digital signature

    A digital signature is a mathematical technique used to validate the authenticity and integrity of a digital document, message or...

  • What is security information and event management (SIEM)?

    Security information and event management (SIEM) is an approach to security management that combines security information ...

CIO
  • product development (new product development)

    Product development -- also called new product management -- is a series of steps that includes the conceptualization, design, ...

  • innovation culture

    Innovation culture is the work environment that leaders cultivate to nurture unorthodox thinking and its application.

  • technology addiction

    Technology addiction is an impulse control disorder that involves the obsessive use of mobile devices, the internet or video ...

HRSoftware
  • organizational network analysis (ONA)

    Organizational network analysis (ONA) is a quantitative method for modeling and analyzing how communications, information, ...

  • HireVue

    HireVue is an enterprise video interviewing technology provider of a platform that lets recruiters and hiring managers screen ...

  • Human Resource Certification Institute (HRCI)

    Human Resource Certification Institute (HRCI) is a U.S.-based credentialing organization offering certifications to HR ...

Customer Experience
  • contact center agent (call center agent)

    A contact center agent is a person who handles incoming or outgoing customer communications for an organization.

  • contact center management

    Contact center management is the process of overseeing contact center operations with the goal of providing an outstanding ...

  • digital marketing

    Digital marketing is the promotion and marketing of goods and services to consumers through digital channels and electronic ...

Close