Snake game for a 5x5 LED matrix

Dependencies:   MCP23S17 mbed

Committer:
dhamilton31
Date:
Wed Oct 09 16:23:20 2013 +0000
Revision:
0:dc906408980e
Child:
1:5fcb94bb03db
Snake movement completed, along with options to turn LEDs on and off with ledCube class.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dhamilton31 0:dc906408980e 1 #include "mbed.h"
dhamilton31 0:dc906408980e 2 #include "ledCube.h"
dhamilton31 0:dc906408980e 3 #include "snake.h"
dhamilton31 0:dc906408980e 4
dhamilton31 0:dc906408980e 5 int main()
dhamilton31 0:dc906408980e 6 {
dhamilton31 0:dc906408980e 7 ledCube cube;
dhamilton31 0:dc906408980e 8 snake mySnake(0, 0);
dhamilton31 0:dc906408980e 9
dhamilton31 0:dc906408980e 10 while(1) {
dhamilton31 0:dc906408980e 11
dhamilton31 0:dc906408980e 12 }
dhamilton31 0:dc906408980e 13 }