@kidswong999 那如果程序一定要用浮点数有什么解决办法吗
U
utgm
@utgm
0
声望
2
楼层
274
资料浏览
0
粉丝
0
关注
utgm 发布的帖子
-
RE: pulse_width_percent()括号里面的参数不是可以是浮点数吗,为什么我会报错呢?
-
pulse_width_percent()括号里面的参数不是可以是浮点数吗,为什么我会报错呢?
from pyb import Pin, Timer import time p = Pin('P7') # P7 has TIM4 and CH1 while(1): tim = Timer(4,freq=50) ch = tim.channel(1, Timer.PWM, pin=p) ch.pulse_width_percent(7.5) time.sleep_ms(6000)