lexus2k / lcdgfx

Driver for LCD displays running on Arduino/Avr/ESP32/Linux (including Rasperry) platforms
MIT License
354 stars 51 forks source link
arduino arduino-library arkanoid atmega328p attiny attiny85 esp32 i2c ili9341 lcd-display nokia5110 raspberry-pi sh1106 spi ssd1306 ssd1325 ssd1327 ssd1331 ssd1351

LCDGFX library for display controllers

Github actions Coverage Status Doc Status GitHub

Introduction

lcdgfx driver is C++ library with unicode support. The library can be compiled for plain Linux (for example, raspberry spi), or you can use it with plain avr-gcc compiler without Arduino IDE. It supports monochrome and RGB oleds and has debug mode, allowing to execute code on Linux, Windows and macOS, using SDL2.0. The library is intended to run on small microcontrollers. It is developed to use as few resources as possible, but still has powerful capabilities (NanoEngine), allowing to develop nice animation. It works also on any powerful devices like raspberry pi, esp32; and can be easily ported to new platform. This library integrates another library canvas

Documentation

For more information about this library, please, visit https://github.com/lexus2k/lcdgfx. Documentation generated by doxygen tool can be found at codedocs xyz site. The library provides numerous usage examples.

Easy to use

Example:

DisplayST7735_128x160x16_SPI display(3,{-1, 4, 5, 0,-1,-1});

void setup()
{
    display.begin();
    display.clear();
}

void loop()
{
    display.setColor(RGB_COLOR16(255,255,0));
    display.drawLine(10,30,56,96);
}

Key Features

Image of arkanoid intro Image of lode runner

Image of menu example Image of color oled

The i2c pins can be changed via API functions. Please, refer to documentation. Keep in mind, that the pins, which are allowed for i2c or spi interface, depend on the hardware. The default spi SCLK and MOSI pins are defined by SPI library, and DC, RST, CES pins are configurable through API.

Setting up

i2c Hardware setup is described here

Setting up for Arduino from github sources)

Setting up for Arduino from Arduino IDE library manager

Using with plain avr-gcc:

For more information about this library, please, visit https://github.com/lexus2k/lcdgfx. Doxygen documentation can be found at Codedocs xyz site. If you found any problem or have any idea, please, report to Issues section.

Supported displays:

Display I2C SPI Orientation Comments
sh1106 128x64 X X
sh1107 128x64 X X
sh1107 64x128 X X
ssd1306 64x32, 64x48, 128x64, 128x32 X X
ssd1325 128x64 X X
ssd1327 128x128 X X
ssd1331 96x64 X X
ssd1351 128x128, 96x96 X X
il9163 128x128 X X please, don't forget to connect backlight
st7735 128x160, 80x160, 128x128 X X please, don't forget to connect backlight
st7789 135x240 X X please, don't forget to connect backlight
ili9341 240x320 X X please, don't forget to connect backlight
pcd8544 84x48 X Nokia 5110
any other custom Refer to custom display example

Supported platforms

Compilers: gcc, clang

Platforms I2C SPI Comments
Arduino
Wio Terminal X X by SeeedStudio
Attiny85, Attiny45 X X Refer to Damellis attiny package
Attiny84, Attiny44 X X Refer to Damellis attiny package
Atmega328p, Atmega168 X X
Atmega32u4 X X
Atmega2560 X X
Digispark, including PRO version X X check examples compatibility list
ESP8266 X X check examples compatibility list
ESP32 X X check examples compatibility list
STM32 X X stm32duino
Arduino Zero X X
Nordic nRF5 (nRF51, nRF52) X X via Standard Arduino nRF52 boards. nRF users, enable c++11 in platform.txt -std=gnu++11
Nordic nRF5 (nRF51, nRF52) X X via Sandeep Mistry arduino-nRF5 package
Wio Terminal X X Wio Terminal
TTGO T-Display X LilyGo TTGO
Plain AVR
Attiny85, Attiny45 X X
Atmega328p, Atmega168 X X
Atmega32u4 X X
Plain ESP32 IDF
ESP32 X X library can be used as IDF component
TTGO T-Display X
Plain ESP8266
ESP8266 X X library can be used as IDF RTOS component
Linux
Raspberry Pi X X i2c-dev, spidev, sys/class/gpio
SDL Emulation X X demo code can be run without real OLED HW via SDL library
macOS
SDL Emulation X X demo code can be run without real OLED HW via SDL library
Windows
SDL Emulation X X demo code can be run without real OLED HW via MinGW32 + SDL library

Digispark users, please check compilation options in your Arduino prior to using this library. lcdgfx library requires at least c++11 and c99 (by default Digispark package misses the options -std=gnu11, -std=gnu++11).

Useful tools

Tim's Image Pixel Editor This is a little application made by Tim Jackson to edit and create Images and fonts for the small monochrome displays.

Built-in font generator Lcdgfx library has built-in Python script to generate lcd fonts from ttf files.

Font format converter from bdf fonts by mayopan Font format converter that converts bdf font to lcdgfx c style free

Projects using lcdgfx

The goals of lcdgfx library

License

The library is free. If this project helps you, you can give me a cup of coffee.

MIT License

Copyright (c) 2016-2022, Alexey Dynda

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.