Project to practice collaboration and header files

Dependencies:   mbed

Committer:
jonathanbarta
Date:
Mon Jan 11 18:54:43 2016 +0000
Revision:
2:6163059b96e8
header file for Segment Display

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jonathanbarta 2:6163059b96e8 1 // SegDisplay.h file
jonathanbarta 2:6163059b96e8 2
jonathanbarta 2:6163059b96e8 3 #ifndef SEGDISPLAY_H
jonathanbarta 2:6163059b96e8 4 #define SEGDISPLAY_H
jonathanbarta 2:6163059b96e8 5
jonathanbarta 2:6163059b96e8 6 #include "mbed.h"
jonathanbarta 2:6163059b96e8 7
jonathanbarta 2:6163059b96e8 8 extern BusOut Seg1; // allow the bus outputs to be used
jonathanbarta 2:6163059b96e8 9 extern BusOut Seg2;
jonathanbarta 2:6163059b96e8 10
jonathanbarta 2:6163059b96e8 11 void SegInit(void); // function prototype
jonathanbarta 2:6163059b96e8 12 char SegConvert(char SegValue) // function prototype
jonathanbarta 2:6163059b96e8 13
jonathanbarta 2:6163059b96e8 14 #endif