Hi.
I created the following script to test this library against the LCD of M5Stack CoreMP135.
Mix.install([
{:framebuffer, github: "livinginthepast/framebuffer"}
])
{:ok, fb} = Framebuffer.open()
Framebuffer.clear(fb)
for x <- 0..99 do
Framebuffer.put_pixel(fb, x, 10, {255, 0, 0})
end
No errors occurred, but there was no change in the LCD.
If there are any errors in the usage, I would appreciate it if you could let me know.
I understand that this library is a work in progress.