Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
logix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
card10
logix
Commits
47314a35
Commit
47314a35
authored
5 years ago
by
schneider
Browse files
Options
Downloads
Patches
Plain Diff
more sewable led content
parent
9c825fc6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#4389
passed
5 years ago
Stage: trigger
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
en/tutorials/sewable_leds.md
+29
-0
29 additions, 0 deletions
en/tutorials/sewable_leds.md
with
29 additions
and
0 deletions
en/tutorials/sewable_leds.md
+
29
−
0
View file @
47314a35
...
...
@@ -69,5 +69,34 @@ Your LED should light up yellow now :)
### Sample application
This example queries the state of the lower right button and turns multiple RGB LEDs on when the button is pressed:
You can adjust the color, number of leds and which pin is used.
```
import buttons
import ws2812
import utime
COLOR_ON = color.YELLOW * 0.2 # 20% yellow
COLOR_OFF = [0, 0, 0]
LED_NUM = 2 # number of attached LEDs
LED_PIN = gpio.WRISTBAND_1
state = False
while True:
if buttons.read(buttons.BOTTOM_RIGHT):
state = not state
if state:
color = COLOR_ON
else:
color = COLOR_OFF
ws2812.set_all(LED_PIN, [color] * LED_NUM)
# Debounce the button
utime.sleep(0.1)
while buttons.read(buttons.BOTTOM_RIGHT): pass
utime.sleep(0.1)
```
An example which connects the accelerometer with multiple RGB LEDs. They start lighting up when the card10 is moved:
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment