2017-12-14 06:36:13 +00:00
|
|
|
try:
|
|
|
|
import framebuf
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
|
2017-12-14 06:36:13 +00:00
|
|
|
def printbuf():
|
|
|
|
print("--8<--")
|
|
|
|
for y in range(h):
|
|
|
|
for x in range(w):
|
2020-03-23 02:26:08 +00:00
|
|
|
print("%02x" % buf[(x + y * w)], end="")
|
2017-12-14 06:36:13 +00:00
|
|
|
print()
|
|
|
|
print("-->8--")
|
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
|
2017-12-14 06:36:13 +00: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)
|
2020-03-23 02:26:08 +00:00
|
|
|
fbuf.pixel(w - 1, h - 1, 0xFF)
|
2017-12-14 06:36:13 +00:00
|
|
|
printbuf()
|
|
|
|
|
|
|
|
# get pixel
|
|
|
|
print(hex(fbuf.pixel(0, h - 1)), hex(fbuf.pixel(1, 1)))
|