We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f44e85 commit 8c3a21eCopy full SHA for 8c3a21e
micropython/examples/pico_unicorn/vertical-fire.py
@@ -56,7 +56,7 @@ def draw():
56
57
for y in range(picounicorn.get_height()):
58
for x in range(picounicorn.get_width()):
59
- value = _heat[y][x]
+ value = _heat[y + 1][x]
60
if value < 0.15:
61
_set_pen(_fire_colours[0])
62
elif value < 0.25:
0 commit comments