Project to practice collaboration and header files

Dependencies:   mbed

SegDisplay.h

Committer:
jonathanbarta
Date:
2016-01-11
Revision:
2:6163059b96e8

File content as of revision 2:6163059b96e8:

// SegDisplay.h file 

#ifndef SEGDISPLAY_H
#define SEGDISPLAY_H

#include "mbed.h"

extern BusOut Seg1; // allow the bus outputs to be used
extern BusOut Seg2; 

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

#endif