Skip to content

Minimal GUI framework for Embedded Systems

License

Notifications You must be signed in to change notification settings

kairos-dev/micro-gui

 
 

Repository files navigation

Micro-GUI (ugui)

Micro-GUI (ugui) is a minimal GUI framework for embedded systems, because there seems to be a lack of open source embedded gui tools, and we should share more.

Heavily inspired by the Pebble User Interface API (which is seriously great, and you can check out here).

It provides a simple window stack, layers for composition of windows, graphics functions for rendering primitives and text, and widgets to simplify commonly used functions.

If you have any issues or feature requests, feel free to open an issue or a pull request. And, if you find yourself using this in a project, I would love to know about it!

Alternatives

  • u8glib A graphics library with support for many different displays.
  • m2tklib Mini Interative Interface Toolkit Library. A portable graphical and character user interface (GUI+CUI) library for embedded systems
  • UGUI A free and open source graphic library for embedded systems
  • ttf2ugui A free and open source ttf to font array converter for UGUI above

Build Status

Build Status

Goals

  • Simple to embed
    • No (or minor) external dependencies
    • Permissive licensing (MIT)
    • C compliant, doesn't force the use of c++
  • Simple to use
    • Minimal API
    • Widgets for common functions
    • Examples for all components
    • API documentation?
  • Simple to develop
    • Object Oriented C
    • Clearly defined modules
  • Simple to test
    • Compiles for any platform (bmp export requires file.h)

Status

  • Window stack / top level interface working
  • Layers mostly working
  • Graphics module
    • layer offsets implemented, need to implement bounds
    • text rendering implemented
  • Asset pipeline
    • OpenIconic - generation complete, needs functions to convert to sprites
    • Fonts - complete, converts .ttf fonts to directly compatible c source/header files
  • Widgets
    • working on menu
    • todo: progress bar, alert/message box, buttons
  • Testing, needs to be implemented (w/ CI)
  • Example, work in progress using SDL2

Getting Started

  • Checkout project with git clone git@github.com:ryankurte/micro-gui.git
  • Create build directory with mkdir build
  • Change to build directory with cd build
  • Initialize cmake with cmake ..
  • Build with make
  • Run with ./ugui

Examples

For an example application see the example/ folder. This application will update a bmp file each rendering call, and can be interacted with using the command line.

Credits

  • Pebble for inspiration
  • Line and Ellipse functions adapted from here
  • Fonts from here

License

This project is experimentally licensed under the terms of the MIT license, because LGPL even with a static linker exception requires you to provide tools to relink your application against the library, which in my opinion is too greater barrier to usage/adoption.

As such, if you make improvements to this library, it would be awesome if you would contribute them back. If that doesn't work, well, we will have to switch to something like the LGPL.

See LICENSE.TXT for more information

About

Minimal GUI framework for Embedded Systems

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 99.7%
  • Other 0.3%