Version of Robotron arcade game using LPC1768, a Gameduino shield, a serial EEPROM (for high scores), two microswitch joysticks and two buttons plus a box to put it in. 20 levels of mayhem.

Dependencies:   25LCxxx_SPI CommonTypes Gameduino mbed

Revision:
1:dfd5eaaf96a3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CharCodes.h	Wed Jun 05 22:05:41 2013 +0000
@@ -0,0 +1,29 @@
+/*
+ * SOURCE FILE : CharCodes.h
+ *
+ * Character codes used in character set.
+ *
+ */
+
+#ifndef CharCodesIncluded
+  
+  #define CharCodesIncluded
+
+  enum CharCodes {
+    TransparentChar = 0,
+    TopLeft = 1,
+    Top = 2,
+    TopRight = 3,
+    Left = 4,
+    Right = 5,
+    BottomLeft = 6,
+    Bottom = 7,
+    BottomRight = 8,
+    MiniPlayer = 9,
+    ArrowUp = 18,
+  };
+  
+#endif
+
+/* END of CharCodes.h */
+