Tweak demo to use display w/h and 16bit buf
This commit is contained in:
parent
b1f13df014
commit
f2eca450f8
|
@ -1,16 +1,15 @@
|
|||
import time, random
|
||||
import picodisplay as display
|
||||
|
||||
WIDTH = 240
|
||||
HEIGHT = 135
|
||||
|
||||
display_buffer = bytearray(WIDTH * HEIGHT)
|
||||
display.init(display_buffer)
|
||||
display.set_backlight(1.0)
|
||||
i = 0
|
||||
width = display.get_width()
|
||||
height = display.get_height()
|
||||
|
||||
display_buffer = bytearray(width * height * 2) # 2-bytes per pixel (RGB565)
|
||||
display.init(display_buffer)
|
||||
|
||||
display.set_backlight(1.0)
|
||||
|
||||
|
||||
class Ball:
|
||||
def __init__(self, x, y, r, dx, dy, pen):
|
||||
self.x = x
|
||||
|
|
Loading…
Reference in New Issue