about summary refs log tree commit diff
path: root/python/blink.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/blink.py')
-rw-r--r--python/blink.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/python/blink.py b/python/blink.py
deleted file mode 100644
index 8e7da25..0000000
--- a/python/blink.py
+++ /dev/null
@@ -1,13 +0,0 @@
-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);