Simple LCD Menu Main Page: Unterschied zwischen den Versionen

Aus ProjectWiki
Wechseln zu:Navigation, Suche
(Created page with "== Overview == This is a small and simple menu system for standard alphanumerical LC-displays. To navigate through the menu, only 3 buttons are needed: Forward, Backward and Menu...")
 
Zeile 1: Zeile 1:
 
== Overview ==
 
== Overview ==
This is a small and simple menu system for standard alphanumerical LC-displays.
+
This is a menu system for standard alphanumerical LC-displays.
To navigate through the menu, only 3 buttons are needed: Forward, Backward and Menu/Enter.
+
To navigate through the menu, only 3 buttons are needed: Forward, Backward and Menu/Enter (or a rotary encoder with push button).
You can have multiple nested sub-menus and edit different value types (however, only booleans (On/Off) or numbers are implemented, but more can easily be added).
+
You can make multiple nested sub-menus, hidden menus, function calls and edit different value types (Bit, Byte, Word, Integer, Single, String).
The menu data is stored in arrays, the structure is made by connecting the right entries together (with their array indexes)
+
The menu data is stored in arrays, the structure is made by connecting the right entries together (with their array indexes).
  
== How to initialize it ==
+
 
 +
== How to use it ==
  
 
== Interface description ==
 
== Interface description ==
  
 
== Sample ==
 
== Sample ==
 +
 
=== Menu structure overview ===
 
=== Menu structure overview ===
  
Zeile 17: Zeile 19:
  
 
== Download ==
 
== Download ==
* [http://www.braunecker.at/ Simple LCD Menu Version 1.0]
+
* [http://www.braunecker.at/ LCD Menu Version 11]

Version vom 4. Juni 2011, 23:10 Uhr

Overview

This is a menu system for standard alphanumerical LC-displays. To navigate through the menu, only 3 buttons are needed: Forward, Backward and Menu/Enter (or a rotary encoder with push button). You can make multiple nested sub-menus, hidden menus, function calls and edit different value types (Bit, Byte, Word, Integer, Single, String). The menu data is stored in arrays, the structure is made by connecting the right entries together (with their array indexes).


How to use it

Interface description

Sample

Menu structure overview

Menu data include file

Main file

Download