Updated Space Invaders on the mbed. Improved upon Michael Son's "Mbed Space Invaders" at https://os.mbed.com/users/michaeljson/notebook/mbed-space-invaders/.

Dependencies:   mbed wave_player mbed-rtos 4DGL-uLCD-SE SparkfunAnalogJoystick SDFileSystem LSM9DS1_Library_cal_updated

Fork of Two-PlayerSpaceInvaders by William Minix

test

Committer:
michaeljson
Date:
Tue Mar 15 19:09:51 2016 +0000
Revision:
0:3817adfaeb06
Child:
23:56f6a12aaebd
Upload Mbed Space Invader version 1.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
michaeljson 0:3817adfaeb06 1 #ifndef GLOBAL_H
michaeljson 0:3817adfaeb06 2 #define GLOBAL_H
michaeljson 0:3817adfaeb06 3
michaeljson 0:3817adfaeb06 4 #ifndef ULCD_4DGL_H_
michaeljson 0:3817adfaeb06 5 #define ULCD_4DGL_H_
michaeljson 0:3817adfaeb06 6 #include "uLCD_4DGL.h"
michaeljson 0:3817adfaeb06 7 #endif
michaeljson 0:3817adfaeb06 8
michaeljson 0:3817adfaeb06 9 // === [global object] ===
michaeljson 0:3817adfaeb06 10 extern uLCD_4DGL uLCD;
michaeljson 0:3817adfaeb06 11
michaeljson 0:3817adfaeb06 12 // === [global settings] ===
michaeljson 0:3817adfaeb06 13 #define BACKGROUND_COLOR 0x000000
michaeljson 0:3817adfaeb06 14
michaeljson 0:3817adfaeb06 15 #endif //GLOBAL_H