Files
foc_Gimbal/APP/LED.h
2024-01-24 15:56:10 +08:00

18 lines
259 B
C

//
// Created by hu123456 on 2024/1/24.
//
#ifndef FOC_N_LED_H
#define FOC_N_LED_H
#include "mymain.h"
#define LED_ON HAL_GPIO_WritePin(GPIOE, GPIO_PIN_8, 1)
#define LED_OFF HAL_GPIO_WritePin(GPIOE, GPIO_PIN_8, 0)
void led_init();
#endif //FOC_N_LED_H