Some checks failed
Pip / build (ubuntu-latest, 3.11) (push) Has been cancelled
Pip / build (ubuntu-latest, 3.12) (push) Has been cancelled
Pip / build (ubuntu-latest, 3.13) (push) Has been cancelled
pre-commit / pre-commit (push) Has been cancelled
Wheels / Build SDist (push) Has been cancelled
Wheels / Wheels on ubuntu-latest (push) Has been cancelled
Wheels / Upload release (push) Has been cancelled
58 lines
1.9 KiB
Python
58 lines
1.9 KiB
Python
#!/usr/bin/python3
|
|
"""
|
|
Mirror a scaled copy of the framebuffer to a 64x32 matrix
|
|
|
|
The upper left corner of the framebuffer is displayed until the user hits ctrl-c.
|
|
|
|
The `/dev/fb0` special file will exist if a monitor is plugged in at boot time,
|
|
or if `/boot/firmware/cmdline.txt` specifies a resolution such as
|
|
`... video=HDMI-A-1:640x480M@60D`.
|
|
"""
|
|
|
|
|
|
import adafruit_raspberry_pi5_piomatter
|
|
import numpy as np
|
|
import PIL.Image as Image
|
|
|
|
with open("/sys/class/graphics/fb0/virtual_size") as f:
|
|
screenx, screeny = [int(word) for word in f.read().split(",")]
|
|
|
|
with open("/sys/class/graphics/fb0/bits_per_pixel") as f:
|
|
bits_per_pixel = int(f.read())
|
|
|
|
assert bits_per_pixel == 16
|
|
|
|
bytes_per_pixel = bits_per_pixel // 8
|
|
dtype = {2: np.uint16, 4: np.uint32}[bytes_per_pixel]
|
|
|
|
with open("/sys/class/graphics/fb0/stride") as f:
|
|
stride = int(f.read())
|
|
|
|
linux_framebuffer = np.memmap('/dev/fb0',mode='r', shape=(screeny, stride // bytes_per_pixel), dtype=dtype)
|
|
|
|
xoffset = 0
|
|
yoffset = 0
|
|
width = 64
|
|
height = 32
|
|
scale = 3
|
|
|
|
geometry = adafruit_raspberry_pi5_piomatter.Geometry(width=width, height=height, n_addr_lines=4, rotation=adafruit_raspberry_pi5_piomatter.Orientation.Normal)
|
|
matrix_framebuffer = np.zeros(shape=(geometry.height, geometry.width, 3), dtype=np.uint8)
|
|
matrix = adafruit_raspberry_pi5_piomatter.AdafruitMatrixBonnetRGB888Packed(matrix_framebuffer, geometry)
|
|
|
|
while True:
|
|
tmp = linux_framebuffer[yoffset:yoffset+height*scale, xoffset:xoffset+width*scale]
|
|
# Convert the RGB565 framebuffer into RGB888Packed (so that we can use PIL image operations to rescale it)
|
|
r = (tmp & 0xf800) >> 8
|
|
r = r | (r >> 5)
|
|
r = r.astype(np.uint8)
|
|
g = (tmp & 0x07e0) >> 3
|
|
g = g | (g >> 6)
|
|
g = g.astype(np.uint8)
|
|
b = (tmp & 0x001f) << 3
|
|
b = b | (b >> 5)
|
|
b = b.astype(np.uint8)
|
|
img = Image.fromarray(np.stack([r, g, b], -1))
|
|
img = img.resize((width, height))
|
|
matrix_framebuffer[:,:] = np.asarray(img)
|
|
matrix.show()
|