找回密码
 注册会员
更新自动建库工具PCB Footprint Expert 2024.04 Pro / Library Expert 破解版

用PWM机制,控制玩具车的马达转速,出现明显的抖动现象?怎么解决??

[复制链接]
my_sammy 发表于 2023-4-18 18:10:53 | 显示全部楼层 |阅读模式

本文包含原理图、PCB、源代码、封装库、中英文PDF等资源

您需要 登录 才可以下载或查看,没有账号?注册会员

×
算法 流程大意如下:
int motor_pwm_cnt=0;
//1ms 调用一次
void deal_MOTOR_PWM(int i_pwm) //传入占空比参数
{

motor_pwm_cnt++;
if(motor_pwm_cnt>=100)
motor_pwm_cnt=0;

if(i_pwm > motor_pwm_cnt)
{
//马达启动
motor_go();

}
else
{
//马达关闭
motor_stop();

}
}
*滑块验证:
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

QQ|手机版|MCU资讯论坛 ( 京ICP备18035221号-2 )|网站地图

GMT+8, 2024-11-23 01:34 , Processed in 0.056750 second(s), 11 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表