by Rob Toulson and Tim Wilmshurst from textbook "Fast and Effective Embedded Systems Design: Applying the ARM mbed"

Dependencies:   mbed

Revision:
0:507436d37d5e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HostIO.h	Mon Oct 15 21:23:48 2012 +0000
@@ -0,0 +1,13 @@
+/* Program Example 6.9: HostIO.h code for modular 7-seg keyboard controller 
+                                                                           */
+#ifndef HOSTIO_H
+
+#define HOSTIO_H
+#include "mbed.h"
+
+extern Serial pc;        // allow pc to be manipulated by other files
+
+void HostInit(void);     // function prototype
+char GetKeyInput(void);  // function prototype
+
+#endif