Advertisement
Guest User

Untitled

a guest
Mar 5th, 2025
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.60 KB | None | 0 0
  1. #include "button.h"
  2.  
  3. #define GPIO_BUTTON GPIO_NUM_1
  4.  
  5. void button_init(void)
  6. {
  7.     gpio_config_t io_config ={};
  8.     io_config.pin_bit_mask= 1ULL << GPIO_BUTTON;
  9.     io_config.mode = GPIO_MODE_INPUT;
  10.     io_config.pull_up_en = GPIO_PULLUP_ENABLED;
  11.     io_config.pulldown_en = GPIO_PULLDOWN_DISABLE;
  12.     io_config.intr_type = GPIO_INTR_DISABLE;
  13.     gpio_config(&io_conf);
  14. }
  15.  
  16. button_state_t button_get(void)
  17. {
  18.     uint8_t pin_level;
  19.     pin_level = gpio_get_level(GPIO_BUTTON);
  20.     if(pin_level ==1)
  21.     {
  22.         button_state_t state = BUTTON_PRESSED;
  23.         return state;
  24.     }
  25.         button_state_t state = BUTTON_RELEASED;
  26.         return state;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement