/* * button.h * * Created on: 2 déc. 2020 * Author: root */ #ifndef INC_BUTTON_H_ #define INC_BUTTON_H_ #include "stm32l053xx.h" typedef struct { GPIO_TypeDef * gpioPort; uint8_t pin; uint8_t pull; }BUTTON_TypeDef; #endif /* INC_BUTTON_H_ */