Releases: gavinlyonsrepo/Display_Lib_RPI
Releases · gavinlyonsrepo/Display_Lib_RPI
version 2.1.0
- Version 2.1.0 24-01-2025
- Added support for TM1637 LED module.
- Added support for vectors, with a template to the print method.
- Replaced the gll font data with better one, same name.
- Changed MAX7219 code so it can use same ASCII font as TM163X modules.
- Abstracted most 'lg' library calls to the common data file.
- Added Scroll test example for ST7789.
- Added Sprite function for 16 bit color displays
- Removed any calls to malloc() & free() from library and examples,
use vectors and unique pointers instead.
version 2.0.0
- Version 2.0.0 05-12-2024
- Changed low level dependency from 'bcm2835' to 'lgpio', primarily so the library can now work on a raspberry 5
as 'bcm2835' cannot work on raspberry 5. 'Lgpio' works with linux device driver rather than low level register access of 'bcm2835'
software should now work on any linux based SBC. - Changed font system, added some different fonts and font data is now horizontally addressed instead of vertically.
This facilitates using buffered writes to write font much faster character by character in a frame buffer rather than pixel by pixel.
In the writeChar method of 16-bit color graphic display.
- Changed low level dependency from 'bcm2835' to 'lgpio', primarily so the library can now work on a raspberry 5
version 1.3.0
- Version 1.3.0 20-03-2024
- Added Support for Sh1106 & Sh1107 OLED I2C.