summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorugurthemaster <ugurthemaster@gmail.com>2014-01-24 08:48:10 +0200
committerugurthemaster <ugurthemaster@gmail.com>2014-01-24 08:48:10 +0200
commitb94a209d1f595efb89170b5192655f9eb7d99ccf (patch)
tree2734609bf5bee15f247e071b6443c922e64bbbf6
parent39763c6cb00a3f48bb1145e8869e778ba48190da (diff)
downloadmicropython-b94a209d1f595efb89170b5192655f9eb7d99ccf.tar.gz
micropython-b94a209d1f595efb89170b5192655f9eb7d99ccf.zip
Update conwaylife.py
Import statements have been moved to the top of the file.
-rw-r--r--examples/conwaylife.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/conwaylife.py b/examples/conwaylife.py
index 7c6ac4d548..89ef94c8c6 100644
--- a/examples/conwaylife.py
+++ b/examples/conwaylife.py
@@ -1,3 +1,7 @@
+#import essential libraries
+import lcd
+import pyb
+
# do 1 iteration of Conway's Game of Life
def conway_step():
for x in range(128): # loop over x coordinates
@@ -37,8 +41,6 @@ def conway_go(num_frames):
pyb.delay(300)
# PC testing
-import lcd
-import pyb
lcd = lcd.LCD(128, 32)
conway_rand()
conway_go(1000)