Skip to content

Instantly share code, notes, and snippets.

View marcon21's full-sized avatar
🐓
Working from home

Marcon Daniel marcon21

🐓
Working from home
View GitHub Profile
@marcon21
marcon21 / microbit_gol.py
Last active February 8, 2020 09:54
Game of life on microbit + neopixel compatible array
from microbit import *
import neopixel
from random import random
rows = 32
cols = 8
matrix = []
led = neopixel.NeoPixel(pin2, rows*cols)