This commit is contained in:
Lukas Schulz 2020-12-19 23:44:08 +01:00
parent 491208e3c4
commit 3093102ba7

View file

@ -57,8 +57,8 @@ def get_track():
#screen.SetPixel(0,1,255,255,255)
offset_x = 10
offset_y = 10
for x in range 32:
for y in range 32:
for x in range(31):
for y in range(31):
r, g, b = image.getpixel((x, y))
screen.setPixel(x+offset_x,y+offset_y,r,g,b)
print('image set')