Skip to content
Snippets Groups Projects
Commit d0db3d3e authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

conwaylife.py: Give people chance to enjoy the show.

Delay between frames; run more generations.
parent 2aefde06
Branches
No related tags found
No related merge requests found
...@@ -34,10 +34,11 @@ def conway_go(num_frames): ...@@ -34,10 +34,11 @@ def conway_go(num_frames):
for i in range(num_frames): for i in range(num_frames):
conway_step() # do 1 iteration conway_step() # do 1 iteration
lcd.show() # update the LCD lcd.show() # update the LCD
pyb.delay(300)
# PC testing # PC testing
import lcd import lcd
import pyb import pyb
lcd = lcd.LCD(128, 32) lcd = lcd.LCD(128, 32)
conway_rand() conway_rand()
conway_go(100) conway_go(1000)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment