GUI-Library for microcontroller [closed]

2019-01-21 07:59发布

I want to create a GUI driven application for a micro-controller (Atmel XMEGA) that is connected to a 128x64 dots graphics LCD (EA DOGL128-6) and 4 buttons for navigation.

Controlling the display itself (e.g. drawing pixels and characters) is no problem but in order to prevent me from reinventing the wheel I was googling for a GUI-Library/-Toolkit that is written in c, includes its source code, will run on a 32 MHz 8-bit micro-controller and provides at least the following controls:

  • panel (to group elements)
  • menu (scrollable)
  • icon
  • label
  • button
  • line-graph (optional)

But I didn't find any thing useful. Does anyone know (or better uses) such a library(preferably for free)?

13条回答
孤傲高冷的网名
2楼-- · 2019-01-21 08:29

In addition to Judge Maygarden's list RAMTEX provide libraries specifically aimed at small graphic LCDs. Again not free, but is this is for commercial use, remember that if you did it yourself, it may take many man hours to achieve a polished product, so consider that before building your own.

At the rates my company accounts for my time (as opposed to my pay rate), if it took more than five hours, I'd be better off buying the Ramtex library (about two days if you only take my pay rate into account). If however you have the time and inclination, it is not a difficult task, and probably fun.

查看更多
劫难
3楼-- · 2019-01-21 08:29
趁早两清
4楼-- · 2019-01-21 08:35

You should take a look at Contiki [wikipedia.org]

Besides being a small and elegant operating system for many 8/16/32-bit microcontrollers, it also features a GUI toolkit. It runs on the Atmel AVR!

For your convenience, here is a direct link to the The Contiki Toolkit (CTK) source code.

查看更多
Melony?
5楼-- · 2019-01-21 08:36

You may want to have a look at the Nano-X framework (formerly known as Microwindows): http://www.microwindows.org/

It claims to support down to a 16-bit DOS system, so I'm not sure if it's suitable for an 8-bit, but maybe the library can be pared down to just what you need.

I haven't used it, but at one point was considering looking into using it for some simple display UI (though on a 32-bit ARM system). Unfortunately, the project shifted gears before I actually did anything with it. I'd be interested in what your take on it is (or how well it works if you decide to try to use it).

查看更多
走好不送
6楼-- · 2019-01-21 08:37

We've started using easyGui and it seems good. You design the screens in a PC app then it generates the source code - making the design stage really easy.

It does most of the things on the list. Line graphs are coming soon. You can make up buttons pretty easily as reusable structures.

It comes with template drivers for lots of displays - depending on how closely the template matches your display (colour depth & interface are the biggest issues) you might be able to use the code unmodified or change it to suit.

查看更多
欢心
7楼-- · 2019-01-21 08:37

The CodeVisionAVR development environment now has graphical libraries for XMEGA.

The CodeVisionAVR C Compiler features a powerful graphic library for LCDs with resolutions from 84x48 up to 800x480 pixels.

However, it is not free.

查看更多
登录 后发表回答