Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.