This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Modified slightly to work with the LCD Keypad Shield. | |
* Original - http://www.instructables.com/id/Arduino-LCD-Game/ | |
*/ | |
#include <LiquidCrystal.h> | |
#define SPRITE_RUN1 1 | |
#define SPRITE_RUN2 2 | |
#define SPRITE_JUMP 3 | |
#define SPRITE_JUMP_UPPER '.' // Use the '.' character for the head | |
#define SPRITE_JUMP_LOWER 4 |
NewerOlder