Advertisement
Julioqf

button.c

Mar 5th, 2025
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include "driver/gpio.h"
  2. #include "button.h"
  3.  
  4. void button_init(void)
  5. {
  6. gpio_config_t io_conf = {};
  7. io_conf.pin_bit_mask = 1ULL << GPIO_BUTTON;
  8. io_conf.mode = GPIO_MODE_INPUT;
  9. io_conf.pull_up_en = GPIO_PULLUP_ENABLE;
  10. io_conf.pull_down_en = GPIO_PULLDOWN_DISABLE;
  11. io_conf.intr_type = GPIO_INTR_DISABLE;
  12.  
  13. gpio_config(&io_conf);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement