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

Delay between frames; run more generations.
pull/180/head
Paul Sokolovsky 2014-01-16 19:10:32 +02:00
rodzic 2aefde06b7
commit d0db3d3e45
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -34,10 +34,11 @@ def conway_go(num_frames):
for i in range(num_frames):
conway_step() # do 1 iteration
lcd.show() # update the LCD
pyb.delay(300)
# PC testing
import lcd
import pyb
lcd = lcd.LCD(128, 32)
conway_rand()
conway_go(100)
conway_go(1000)