17 lines
255 B
Python
Raw Normal View History

2021-10-04 10:04:06 +08:00
import PikaStdLib
2021-11-21 16:32:30 +08:00
import STM32G0
2021-10-04 10:04:06 +08:00
2021-11-21 16:32:30 +08:00
time = STM32G0.Time()
pwm = STM32G0.PWM()
2021-10-04 10:04:06 +08:00
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