about summary refs log tree commit diff
path: root/python/blink.py
blob: 8e7da25b733add9bb2eabf45e7359ed00e0c2115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from machine import Pin
import time

for i in range(0,16):
    Pin(i, Pin.OUT).off()

while True:
    for i in range(0,16):
        Pin(i, Pin.OUT).on()
    time.sleep(0.1);
    for i in range(0,16):
        Pin(i, Pin.OUT).off()
    time.sleep(0.1);