Lab3_Gui code

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mbed_beat_factory.h Source File

mbed_beat_factory.h

00001 #include "mbed.h"
00002 
00003 
00004 struct commStruct{
00005   char packetType;
00006   char data[3][3];
00007 };
00008 
00009 struct songStruct{
00010   int  note[128];
00011   int tempo, notes, currentNote;
00012 };
00013 
00014 
00015 void initializeSong( void );
00016 void playSong(void);
00017