Merge pull request #124 from bennuttall/blinkt

Add code example for Blinkt!
This commit is contained in:
RM 2016-10-19 13:18:43 +01:00 committed by GitHub
commit 04e968c447
1 changed files with 19 additions and 2 deletions

View File

@ -26,6 +26,23 @@ pin:
mode: output
active: high
-->
#Blinkt!
# Blinkt!
Blinkt! is a super slimline Raspberry Pi Add-on board with 8 APA-102 LEDs.
Blinkt! is a super slimline Raspberry Pi Add-on board with 8 APA-102 LEDs.
## Code
```python
from blinkt import set_pixel, show
from random import randint
from time import sleep
while True:
for pixel in range(8):
r = randint(255)
g = randint(255)
b = randint(255)
set_pixel(pixel, r, g, b)
show()
sleep(0.1)
```