Example of how to use an Ada Fruit RGB LCD with the Ada Fruit RGB LCD Shield Library

Dependencies:   AdaFruit_RGBLCDShield MCP23017 mbed RTclock

Dependents:   SX1276_GPS

Fork of MCP_test by Wim Huiskamp

Updated the Adafruit RGB LCD Shield test app with a module system.

It pulls in RTclock which is another library I did for controlling the DS1307 RTC in a sane way (marries stdlib time and the RTC together cleanly). You don't need an RTC to run the example, it'll just use stdlib time instead. This class also maps RTC to system time, so if you loose the RTC the mbed will free run.

Four modules are defined in the modules folder plus the module base class. These examples provide:

  • title menu item
  • time menu item (updates automatically)
  • date menu item
  • fake temp menu item

Press select to switch modes: menu->cursor->change

Menu switches menu items going up/down. Cursor allows you to move around editable fields using the cursor keys / marker. Change allows you to move left/right on a particular line and change values by using up/down on an item with the blink box.

Custom fonts are defined for UI arrows and degree character.

If you want a menu item to update over time then you need to implement the canRefresh() member function in any child module you derive from class Module. Make it return true to receive update requests in your show() member function. Date and time both check when refreshing to see if anything has changed, then update.

main() registers a table of modules with the MenuManager. Others can be added easily by creating children derived from the Module base class..

Depending on what you want to do you may need to adjust the loop wait time in MenuManager::loop(). If you don't balance this based on work you need to do then the key presses may get a little lively. I may adjust the key checking to be fixed to 200ms regardless of loop wait time, however the catch there is that you'll consume more power the more loops you do so the wait is still important.

Happy coding!

Committer:
vtraveller
Date:
Fri Oct 10 11:10:56 2014 +0000
Revision:
28:fbcd3bac0cd7
Parent:
17:731a47339cb8
Reduced write delay - faster LCD response

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vtraveller 10:3fcab08717fc 1 #ifndef __MODULE_H__
vtraveller 10:3fcab08717fc 2 #define __MODULE_H__
vtraveller 10:3fcab08717fc 3
vtraveller 10:3fcab08717fc 4 #ifndef _countof
vtraveller 10:3fcab08717fc 5 #define _countof(a) (sizeof(a) / sizeof(a[0]))
vtraveller 10:3fcab08717fc 6 #endif
vtraveller 10:3fcab08717fc 7
vtraveller 10:3fcab08717fc 8 class Module
vtraveller 10:3fcab08717fc 9 {
vtraveller 10:3fcab08717fc 10 public:
vtraveller 17:731a47339cb8 11 enum EModes
vtraveller 17:731a47339cb8 12 {
vtraveller 17:731a47339cb8 13 eModeMenu = 0,
vtraveller 17:731a47339cb8 14 eModeSelect,
vtraveller 17:731a47339cb8 15 eModeChange,
vtraveller 17:731a47339cb8 16 eModeLast
vtraveller 17:731a47339cb8 17 };
vtraveller 17:731a47339cb8 18
vtraveller 17:731a47339cb8 19 public:
vtraveller 13:9641bc42db92 20 Module(Serial & in_cDisplay);
vtraveller 10:3fcab08717fc 21 virtual ~Module();
vtraveller 10:3fcab08717fc 22
vtraveller 10:3fcab08717fc 23 virtual bool canRefresh() { return false; }
vtraveller 11:96146db429de 24 virtual void change
vtraveller 11:96146db429de 25 (
vtraveller 13:9641bc42db92 26 size_t in_nIndex,
vtraveller 11:96146db429de 27 bool in_bUp
vtraveller 11:96146db429de 28 )
vtraveller 11:96146db429de 29 { ; }
vtraveller 13:9641bc42db92 30 virtual int getCursorOffset(size_t & inout_nIndex)
vtraveller 11:96146db429de 31 { return -1; }
vtraveller 17:731a47339cb8 32 virtual void onModeChange(EModes in_eMode)
vtraveller 17:731a47339cb8 33 { ; }
vtraveller 15:d1eaddb363be 34 virtual void show(bool in_bRefresh) = 0;
vtraveller 10:3fcab08717fc 35
vtraveller 10:3fcab08717fc 36 protected:
vtraveller 13:9641bc42db92 37 Serial & m_cDisplay;
vtraveller 10:3fcab08717fc 38 };
vtraveller 10:3fcab08717fc 39
vtraveller 10:3fcab08717fc 40 #endif /* __MODULE_H__ */