├── .gitattributes ├── AnimatedGIFs.ino ├── FilenameFunctions.cpp ├── GIFDecoder.h ├── GIFParseFunctions.cpp ├── LZWFunctions.cpp ├── README.md └── gifs ├── Blinky1.gif ├── Blinky2.gif ├── FPUBan.gif ├── Sega1.gif ├── blocks1.gif ├── car1.gif ├── car2.gif ├── cat.gif ├── dhdog.gif ├── fire.gif ├── ghost3.gif ├── ghosts2.gif ├── goomba.gif ├── horse.gif ├── jump.gif ├── knight.gif ├── marcns.gif ├── mario1.gif ├── mario2.gif ├── mario3.gif ├── markart.gif ├── matrix.gif ├── mkart.gif ├── moai1.gif ├── pacman1.gif ├── pacman2.gif ├── pong1.gif ├── rain.gif ├── readme.md ├── run.gif ├── shooter.gif ├── sonic1.gif ├── sonic2.gif ├── star.gif └── test1.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/.gitattributes -------------------------------------------------------------------------------- /AnimatedGIFs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/AnimatedGIFs.ino -------------------------------------------------------------------------------- /FilenameFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/FilenameFunctions.cpp -------------------------------------------------------------------------------- /GIFDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/GIFDecoder.h -------------------------------------------------------------------------------- /GIFParseFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/GIFParseFunctions.cpp -------------------------------------------------------------------------------- /LZWFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/LZWFunctions.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/README.md -------------------------------------------------------------------------------- /gifs/Blinky1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/Blinky1.gif -------------------------------------------------------------------------------- /gifs/Blinky2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/Blinky2.gif -------------------------------------------------------------------------------- /gifs/FPUBan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/FPUBan.gif -------------------------------------------------------------------------------- /gifs/Sega1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/Sega1.gif -------------------------------------------------------------------------------- /gifs/blocks1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/blocks1.gif -------------------------------------------------------------------------------- /gifs/car1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/car1.gif -------------------------------------------------------------------------------- /gifs/car2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/car2.gif -------------------------------------------------------------------------------- /gifs/cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/cat.gif -------------------------------------------------------------------------------- /gifs/dhdog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/dhdog.gif -------------------------------------------------------------------------------- /gifs/fire.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/fire.gif -------------------------------------------------------------------------------- /gifs/ghost3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/ghost3.gif -------------------------------------------------------------------------------- /gifs/ghosts2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/ghosts2.gif -------------------------------------------------------------------------------- /gifs/goomba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/goomba.gif -------------------------------------------------------------------------------- /gifs/horse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/horse.gif -------------------------------------------------------------------------------- /gifs/jump.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/jump.gif -------------------------------------------------------------------------------- /gifs/knight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/knight.gif -------------------------------------------------------------------------------- /gifs/marcns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/marcns.gif -------------------------------------------------------------------------------- /gifs/mario1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/mario1.gif -------------------------------------------------------------------------------- /gifs/mario2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/mario2.gif -------------------------------------------------------------------------------- /gifs/mario3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/mario3.gif -------------------------------------------------------------------------------- /gifs/markart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/markart.gif -------------------------------------------------------------------------------- /gifs/matrix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/matrix.gif -------------------------------------------------------------------------------- /gifs/mkart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/mkart.gif -------------------------------------------------------------------------------- /gifs/moai1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/moai1.gif -------------------------------------------------------------------------------- /gifs/pacman1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/pacman1.gif -------------------------------------------------------------------------------- /gifs/pacman2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/pacman2.gif -------------------------------------------------------------------------------- /gifs/pong1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/pong1.gif -------------------------------------------------------------------------------- /gifs/rain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/rain.gif -------------------------------------------------------------------------------- /gifs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/readme.md -------------------------------------------------------------------------------- /gifs/run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/run.gif -------------------------------------------------------------------------------- /gifs/shooter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/shooter.gif -------------------------------------------------------------------------------- /gifs/sonic1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/sonic1.gif -------------------------------------------------------------------------------- /gifs/sonic2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/sonic2.gif -------------------------------------------------------------------------------- /gifs/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/star.gif -------------------------------------------------------------------------------- /gifs/test1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techy101/LED-Tophat/HEAD/gifs/test1.gif --------------------------------------------------------------------------------