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)?

link|improve this question

5  
Probably not, you'll most likely have to reinvent the wheel :( If you do this though, why not post it as an open source project to help others? – samoz Jun 8 '10 at 13:27
Are you using an RTOS or running bare metal? – Judge Maygarden Jun 8 '10 at 16:07
1  
Just to clarify--this is a monochrome LCD right? That probably eliminates some libraries. – Craig McQueen Jun 11 '10 at 3:58
feedback

9 Answers

up vote 3 down vote accepted

I would consider rolling your own "immediate mode" GUI. Jari Komppa has a good tutorial about them. It's a lot easier than you may think, and you'll probably find most GUI libraries--even those targeting embedded systems--are a bit heavy-weight for your system.

If you insist on using a third-party library, below are a few I found. I've never used any of them and they are probably fairly expensive.

link|improve this answer
I have used EasyGUI in a product. It has worked well for us. Our screen size is the same as the OP and based on an AVR32 processor. – Ian Jun 9 '10 at 9:36
I decided to create my own implementation. – Martin Nov 19 '10 at 10:40
@Martin Great. How did you like the end results? – Judge Maygarden Nov 19 '10 at 15:15
feedback

I personally used PEG (at work), but it is not for free. You just need to write a small layer of adaptation and use it. You can also look at Qt or minigui.

link|improve this answer
5  
This is a small microcontroller based system. I doubt if QT would fit onto the platform and even if it did porting would be a disproportionately large effort. – ConcernedOfTunbridgeWells Jun 8 '10 at 15:31
Assuming the target is a monochrome LCD, does that rule out Qt? – Craig McQueen Jun 11 '10 at 3:59
The fact that the target is an 8-bit microcontroller pretty much eliminates Qt for those with any sort of practical decision making skills. ;) – Judge Maygarden Jun 13 '10 at 2:27
feedback

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.

link|improve this answer
Unfortunately the offical website seems offline at the moment, but the project is also available at sourceforge.net/projects/contiki – Oskar N. Aug 25 '10 at 19:03
feedback

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).

link|improve this answer
I ran across that one too, but a even a light-weight xlib-type system seems to heavy-weight for a typical AVR. – Judge Maygarden Jun 9 '10 at 2:17
@Judge: I suspect you're right. I look forward to diving into the links you gave in your answer. – Michael Burr Jun 9 '10 at 6:49
feedback

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.

link|improve this answer
Does RAMTEX have GUI controls/widgets or is it just an LCD driver? – Judge Maygarden Jun 9 '10 at 13:19
The use of the term "driver" in their product name is unhelpful and misleading; they are GUI libraries. Look at the specific product links to see a screen-shot and feature list. The more capable the display, the more features. Probably bet to talk to the supplier for support for your device. – Clifford Jun 9 '10 at 20:09
@Clifford: Have you used RAMTEX's gui library personally? I am having issues talking with an SSD1305 via the SPI interface. If you have any thoughts, I will post a question here and not high-jack this tread. – Adam Lewis Aug 31 '11 at 19:24
@Adam: It is used in my company, but not directly by me. I am not sure what the interface to the LCD is or even what LCD is used. – Clifford Sep 2 '11 at 15:51
@Clifford: Thanks! It was worth a shot. Ramtex got back with me to resolve the issue. – Adam Lewis Sep 2 '11 at 16:00
feedback

Another alternative you might want to look at if this is going to be a commercial project would be the Storyboard Suite from Crank Software.

It was designed specifically for embedded systems, is portable to multiple operating systems, CPU architectures and rendering technologies and provides a GUI builder that lets you use images as your 'widgets' and use Lua scripting for the system and glue logic.

I think it is pretty neat, but I'm pretty biased =;-)

Thomas

link|improve this answer
feedback

NuttX is a real-time operating system for microcontrollers. The author has starting a developing some gui primitives for LCD displays for it.

link|improve this answer
feedback

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.

link|improve this answer
feedback

I have been working on a similar project. Closest thing I could find are in the following links, but I doubt you will find a library with all the features you desire. These will only setup basic drawing functions, but it's a start. There are also some useful tools for bitmap converting and font creators if you dig around.

http://www.siwawi.arubi.uni-kl.de/avr_projects/arm_projects/glcd_dcf77/index.html

http://en.radzio.dxp.pl/

Almost everything else I have seen here is way overkill for what the poster seems to be asking for.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.