circuitpython/tests/extmod/framebuf8.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
587 B
Python
Raw Normal View History

try:
import framebuf
except ImportError:
print("SKIP")
raise SystemExit
2021-03-15 09:57:36 -04:00
def printbuf():
print("--8<--")
for y in range(h):
for x in range(w):
2021-03-15 09:57:36 -04:00
print("%02x" % buf[(x + y * w)], end="")
print()
print("-->8--")
2021-03-15 09:57:36 -04:00
w = 8
h = 5
buf = bytearray(w * h)
fbuf = framebuf.FrameBuffer(buf, w, h, framebuf.GS8)
# fill
fbuf.fill(0x55)
printbuf()
# put pixel
fbuf.pixel(0, 0, 0x11)
fbuf.pixel(w - 1, 0, 0x22)
fbuf.pixel(0, h - 1, 0x33)
2021-03-15 09:57:36 -04:00
fbuf.pixel(w - 1, h - 1, 0xFF)
printbuf()
# get pixel
print(hex(fbuf.pixel(0, h - 1)), hex(fbuf.pixel(1, 1)))