/* * led.h * * Created on: 2 déc. 2020 * Author: root */ #ifndef INC_LED_H_ #define INC_LED_H_ #include "stm32l053xx.h" typedef struct { GPIO_TypeDef * gpioPort; uint16_t pin; }LED_TypeDef; #endif /* INC_LED_H_ */