Giter Club home page Giter Club logo

button-debounce's Introduction

Button Debounce

What is it?

Button Debounce is a library to handle contact bounce in your microcontroller system circuit. It build with event driven architecture, non-blocking execution, only standard C, platform and hardware independent. And I hope you'd enjoy it.
I also write up about this library on Slime Systems, be sure to check it out.

How to use this?

Just include the header to your project.

#include "button_debounce.h"

Declaring what to do when the button press has been detected.

// For example toggle an LED
void led_toggle() {
  // toggle an LED on pin B5
  ChgBit(GPIOB->ODR, 5);
}

Setup an object instance.

const ButtonDebounce_Config button_c3_debounce_config = {
    .fell = &led_toggle, // point to the function we just declared

    // depend on the circuit and intentions
    // you might want to use .rose instead of .fell
    // which detects different edge transitions
};
static ButtonDebounce_State button_c3_debounce_state;

// somewhere in main()
button_debounce__init(&button_c3_debounce_state);

And keep sample the signal from the main loop.

  for (;;) {
    button_debounce__sample(
      &button_c3_debounce_config,
      &button_c3_debounce_state,
      ValBit(GPIOC->IDR, 3)
    );
  }

See the whole project including Makefile and build instructions at https://github.com/midnight-wonderer/button-debounce-example

License

Button Debounce is released under the BSD 3-Clause License. ๐ŸŽ‰

button-debounce's People

Contributors

midnight-wonderer avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.