Jamie Wood

Results 3 comments of Jamie Wood

The most basic example of text output would be something like this: ```python from st7920 import ST7920 s = ST7920() s.clear() s.put_text("Hello world!", 5, 10) s.redraw() ``` The ST7920.put_text method...

The `redraw` function displays the drawn image on the screen. The other methods in this library draw to a framebuffer in memory for speed, and once all drawing is complete...

The tricky thing with sending bitmap data is that the screen uses 1-bit-per-pixel, so you have to pack 8 pixels into a single byte. Have a look at the load_font_sheet()...