Rob Toulson / Mbed 2 deprecated PE_06-05_ModularCodeExample

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers HostIO.h Source File

HostIO.h

00001 /* Program Example 6.9: HostIO.h code for modular 7-seg keyboard controller 
00002                                                                            */
00003 #ifndef HOSTIO_H
00004 
00005 #define HOSTIO_H
00006 #include "mbed.h"
00007 
00008 extern Serial pc;        // allow pc to be manipulated by other files
00009 
00010 void HostInit(void);     // function prototype
00011 char GetKeyInput(void);  // function prototype
00012 
00013 #endif