Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thingpulse/minigrafx
ESP8266 graphics library
https://github.com/thingpulse/minigrafx
e-ink epaper esp32 esp8266 framebuffer graphics-library
Last synced: 6 days ago
JSON representation
ESP8266 graphics library
- Host: GitHub
- URL: https://github.com/thingpulse/minigrafx
- Owner: ThingPulse
- License: mit
- Created: 2017-05-02T09:44:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-01T23:15:32.000Z (about 3 years ago)
- Last Synced: 2025-01-10T04:08:52.223Z (14 days ago)
- Topics: e-ink, epaper, esp32, esp8266, framebuffer, graphics-library
- Language: C++
- Size: 394 KB
- Stars: 221
- Watchers: 14
- Forks: 46
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![PlatformIO CI](https://github.com/ThingPulse/minigrafx/actions/workflows/main.yml/badge.svg)](https://github.com/ThingPulse/minigrafx/actions/workflows/main.yml)
# ThingPulse MiniGrafx Library
This is a graphics library for embedded devices containing a framebuffer to avoid flickering. Instead of writing directly to the display all drawing operations are made on the buffer stored in memory. Once you are finished with one drawing cycle the whole content of the framebuffer is written to the display.
## Service level promise
This is a ThingPulse prime project. See our open-source commitment declaration for what this means.## Inspiration
This library is heavily based on [https://github.com/ThingPulse/esp8266-oled-ssd1306](https://github.com/ThingPulse/esp8266-oled-ssd1306)
developed by Fabrice Weinberg and myself mostly for tiny OLED displays. This new library targets also color displays and e-paper displays with higher resolution## Philosophy
Often in technology you have to choose between several options and make a trade-off. While some graphic libraries
are optimized for minimal memory consumption they have to accept ugly visual side effects such as flickering or tearing.## Getting started
[Getting Started](Introduction.md) by reading the intro.
## API
[API Documentation](API.md) of the library.