New Arduino library: MenuSystem

Not entirely sure how this is relevant to the MenuSystem I've created. Looks to me like a shameless plug!

avenue33:
When I developed my menu class, I faced two difficulties: displaying the menu and defining the options.

A menu is declared this way:

// menu declaration and size

item myMenuItems[] = {
  {     0x0000, "Menu 0"        }  ,   
  {     0x1000, "Item 1"        }  ,
  {     0x1100, "Item 11"       }  ,
  {     0x1200, "Item 12"       }  ,
  {     0x2000, "Item 2"        }  ,
  {     0x2100, "Item 21"       }  ,
  {     0x2110, "Item 211"      }  ,
  {     0x2120, "Item 212"      }  ,
  {     0x2121, "Item 2121"     }  ,
  {     0x2122, "Item 2122"     }  ,
  {     0x2200, "Item 22"       }  ,
  {     0x2300, "Item 23"       }  ,
  {     0x3000, "Item 3"        }
};




Learn more about the [menu](http://embeddedcomputing.weebly.com/menu.html) and the [Serial_LCD](http://embeddedcomputing.weebly.com) library suite :)