mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
25 lines
391 B
Python
25 lines
391 B
Python
|
import PikaStdLib
|
||
|
import pikaRTThread
|
||
|
import pikaRTDevice
|
||
|
import PikaDebug
|
||
|
|
||
|
thread = pikaRTThread.Thread()
|
||
|
mem = PikaStdLib.MemChecker()
|
||
|
pdb = PikaDebug.Debuger()
|
||
|
|
||
|
print('mem use max:')
|
||
|
mem.max()
|
||
|
|
||
|
led = pikaRTDevice.GPIO()
|
||
|
led.setId(57)
|
||
|
led.setMode('out')
|
||
|
led.enable()
|
||
|
|
||
|
pwm = pikaRTDevice.PWM()
|
||
|
pwm.setName('tim3pwm1')
|
||
|
pwm.setChannel(1)
|
||
|
pwm.setFrequency(1000)
|
||
|
pwm.setDuty(0.5)
|
||
|
pwm.enable()
|
||
|
|