fixed background colour

This commit is contained in:
thirdr 2024-04-04 16:18:22 +01:00
parent badc679c2b
commit 233896ac81
1 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,10 @@ for i in range(16):
for i in range(16):
display.create_pen(0, 0, i * 16)
# Adding in an white background colour at the beginning of each offset.
for i in range(3):
display.update_pen(i * 16, 200, 200, 200)
# Clear the screen
display.set_pen(BG)
display.clear()