├── .github └── FUNDING.yml ├── .gitignore ├── GIFDraw.ino ├── LICENSE ├── README.md ├── animated_gif_memory.ino └── images ├── colortest.h ├── darthvader.h ├── doc └── Animated GIF.png ├── hud_1.h ├── hud_2.h ├── hud_5.h ├── hud_6.h ├── hud_7.h ├── hyperspace.h ├── nostromo.h └── x_wing.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .vscode -------------------------------------------------------------------------------- /GIFDraw.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/GIFDraw.ino -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/README.md -------------------------------------------------------------------------------- /animated_gif_memory.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/animated_gif_memory.ino -------------------------------------------------------------------------------- /images/colortest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/images/colortest.h -------------------------------------------------------------------------------- /images/darthvader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/images/darthvader.h -------------------------------------------------------------------------------- /images/doc/Animated GIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/images/doc/Animated GIF.png -------------------------------------------------------------------------------- /images/hud_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/images/hud_1.h -------------------------------------------------------------------------------- /images/hud_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/images/hud_2.h -------------------------------------------------------------------------------- /images/hud_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/images/hud_5.h -------------------------------------------------------------------------------- /images/hud_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/images/hud_6.h -------------------------------------------------------------------------------- /images/hud_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/images/hud_7.h -------------------------------------------------------------------------------- /images/hyperspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/images/hyperspace.h -------------------------------------------------------------------------------- /images/nostromo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/images/nostromo.h -------------------------------------------------------------------------------- /images/x_wing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastoutpostworkshop/animated_gif_memory/HEAD/images/x_wing.h --------------------------------------------------------------------------------