Vjezba 7-7 Dinko Djakovic - modularno programiranje

Dependencies:   mbed

SegDisplay.h

Committer:
djdinko
Date:
2015-05-22
Revision:
0:c771d4ee0a76

File content as of revision 0:c771d4ee0a76:

// SegDisplay.h file for Exercise 24
#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