Merge pull request #577 from ahpook/led-pulse

Badger2040: Make the LED example pulse instead of strobe
This commit is contained in:
Hel Gibbons 2022-11-18 09:23:13 +00:00 committed by GitHub
commit 62303b6912
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 4 deletions

View File

@ -6,7 +6,10 @@ import time
badger = badger2040.Badger2040()
while True:
badger.led(255)
time.sleep(1)
badger.led(0)
time.sleep(1)
# increase badger.led brightness from 0 to 255 and back down to zero
for i in range(0, 255):
badger.led(i)
time.sleep_ms(10)
for i in range(255, 0, -1):
badger.led(i)
time.sleep_ms(10)