17 lines
249 B
Python
Raw Normal View History

2021-10-04 10:04:06 +08:00
import PikaStdLib
import STM32
time = STM32.Time()
pwm = STM32.PWM()
pwm.setPin('PA8')
pwm.setFrequency(2000)
pwm.setDuty(0.5)
pwm.enable()
while True:
time.sleep_ms(500)
pwm.setDuty(0.5)
time.sleep_ms(500)
2021-10-04 11:19:17 +08:00
pwm.setDuty(0.001)
2021-10-04 10:59:55 +08:00