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

Dependencies:   mbed

SegDisplay.h

Committer:
robt
Date:
2012-10-15
Revision:
0:507436d37d5e

File content as of revision 0:507436d37d5e:

/* Program Example 6.7: SegDisplay.h file for modular 7-seg keyboard controller 
                                                                 */
#ifndef SEGDISPLAY_H
#define SEGDISPLAY_H

#include "mbed.h"  
                 
extern BusOut Seg1;     // allow Seg1 to be manipulated by other files
extern BusOut Seg2;     // allow Seg2 to be manipulated by other files

void SegInit(void);                  // function prototype
char SegConvert(char SegValue);      // function prototype

#endif