同步步兵代码,暂时关闭底盘跟随

This commit is contained in:
2025-11-02 21:21:11 +08:00
parent 456cc96c81
commit 3821589bed
693 changed files with 238044 additions and 2735 deletions

View File

@@ -0,0 +1,11 @@
#ifndef __LASER_H
#define __LASER_H
void Laser_Init(void);//激光初始化
void Laser_ON(void);//激光普通模式打开激光
void Laser_OFF(void);//激光普通模式关闭激光
void Laser_PWMInit(void);//激光PWM模式初始化
void Laser_PWMON(float Brightness);//激光PWM模式以一定亮度打开激光
void Laser_PWMOFF(void);//激光PWM模式关闭激光
#endif