examples/hwapi: Add uasyncio example of fading 2 LEDs in parallel.

This commit is contained in:
Paul Sokolovsky 2016-11-14 01:30:51 +03:00
parent 8212773adb
commit bf318801d2
2 changed files with 34 additions and 0 deletions

View File

@ -15,5 +15,8 @@ from machine import Pin
# User LED 1 on gpio21
LED = Pin(21, Pin.OUT)
# User LED 2 on gpio120
LED2 = Pin(120, Pin.OUT)
# Button S3 on gpio107
BUTTON = Pin(107, Pin.IN)

View File

@ -0,0 +1,31 @@
# Like soft_pwm_uasyncio.py, but fading 2 LEDs with different phase.
# Also see original soft_pwm.py.
import uasyncio
from hwconfig import LED, LED2
async def pwm_cycle(led, duty, cycles):
duty_off = 20 - duty
for i in range(cycles):
if duty:
led.value(1)
await uasyncio.sleep_ms(duty)
if duty_off:
led.value(0)
await uasyncio.sleep_ms(duty_off)
async def fade_in_out(LED):
while True:
# Fade in
for i in range(1, 21):
await pwm_cycle(LED, i, 2)
# Fade out
for i in range(20, 0, -1):
await pwm_cycle(LED, i, 2)
loop = uasyncio.get_event_loop()
loop.create_task(fade_in_out(LED))
loop.call_later_ms_(800, fade_in_out(LED2))
loop.run_forever()