24 lines
550 B
Python
24 lines
550 B
Python
# SPDX-FileCopyrightText: 2021 Brent Rubell for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
"""
|
|
'fading_led.py'.
|
|
|
|
=================================================
|
|
fades a LED using pwmio's PWM
|
|
"""
|
|
|
|
import time
|
|
import pwmio
|
|
import board
|
|
|
|
led = pwmio.PWMOut(board.D13, frequency=500, duty_cycle=0)
|
|
|
|
while True:
|
|
for i in range(100):
|
|
if i < 50: # fade up
|
|
led.duty_cycle = int(i * 2 * 65535 / 100)
|
|
else: # fade down
|
|
led.duty_cycle = 65535 - int((i - 50) * 2 * 65535 / 100)
|
|
time.sleep(0.05)
|