Hayden Wisniewski / Mbed 2 deprecated 5CollabProj

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "Host.IO.h"
00003 #include "SegDisplay.h"
00004 
00005 char data1, data2;
00006 
00007 int main() {
00008     SegInit();
00009     HostInit();
00010     while(1) {
00011         data2 = GetKeyInput();
00012         Seg2 = SegConvert(data2);
00013         data1 = GetKeyInput();
00014         Seg1 = SegConvert(data1);
00015         pc.printf(" ");
00016         
00017     }
00018 }