about summary refs log tree commit diff
diff options
context:
space:
mode:
authorXiao Pan <xyz@flylightning.xyz>2024-08-20 14:39:02 -0700
committerXiao Pan <xyz@flylightning.xyz>2024-08-20 14:39:50 -0700
commita60b819a1039e0a2edcfe1d5ab933ada3ccac7a9 (patch)
treeb11f35f0111a1c8653709c15612070d4477ea4dc
parent953c5a5325000c6b795e24bbfc9bf1e9c1c6d175 (diff)
too simple and not very useful, move to private python_notes.md instead
-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);