Library which creates a serial test console, it supports pages and menu items. The items are added and the pages are added as necessary when the user sets it up. This is a great too for creating an easy to maintain menu system, whether for a test sytem, or anything else.

Dependencies:   Terminal

Files at this revision

API Documentation at this revision

Comitter:
tomo21
Date:
Fri May 08 22:25:27 2015 +0000
Parent:
7:903c8e16ed25
Child:
9:b1fdd7ea6f72
Commit message:
fixed analog in (float)

Changed in this revision

menuitem.h Show annotated file Show diff for this revision Revisions of this file
--- a/menuitem.h	Mon May 04 15:33:33 2015 +0000
+++ b/menuitem.h	Fri May 08 22:25:27 2015 +0000
@@ -93,7 +93,7 @@
     {}
     
     virtual void getString(char *buf, int bufLen) {
-        snprintf(buf, bufLen, "%d", int(m_io));
+        snprintf(buf, bufLen, "%f", m_io.read());
     }
 
 private: