diff options
Diffstat (limited to 'stm-led.h')
-rw-r--r-- | stm-led.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -38,10 +38,10 @@ #include "stm32f4xx_hal.h" #define LED_PORT GPIOK -#define LED_RED GPIO_PIN_5 -#define LED_YELLOW GPIO_PIN_7 -#define LED_GREEN GPIO_PIN_4 -#define LED_BLUE GPIO_PIN_6 +#define LED_RED GPIO_PIN_7 +#define LED_YELLOW GPIO_PIN_6 +#define LED_GREEN GPIO_PIN_5 +#define LED_BLUE GPIO_PIN_4 #define led_on(pin) HAL_GPIO_WritePin(LED_PORT,pin,SET) #define led_off(pin) HAL_GPIO_WritePin(LED_PORT,pin,RESET) |