├── LICENSE ├── README.md ├── examples ├── Elliptical_Text_Animation │ ├── Elliptical_Text_Animation.ino │ ├── build_opt.h │ └── font.h ├── Simple_Image │ ├── Simple_Image.ino │ └── build_opt.h ├── Space_Invaders_Animation_Demo │ ├── Space_Invaders_Animation_Demo.ino │ ├── build_opt.h │ ├── font.h │ └── graph_bitmaps.h ├── graphDemo_SineCurve │ ├── build_opt.h │ ├── font.h │ └── graphDemo_SineCurve.ino ├── hello_world │ ├── build_opt.h │ ├── font.h │ └── hello_world.ino ├── printTest │ ├── build_opt.h │ ├── font.h │ └── printTest.ino ├── reading_joystick │ ├── build_opt.h │ ├── font.h │ └── reading_joystick.ino ├── scolling_text │ ├── build_opt.h │ ├── font.h │ └── scolling_text.ino ├── simple_demo │ ├── build_opt.h │ ├── font.h │ └── simple_demo.ino └── snake_byte_game │ ├── UserDefinedFont.h │ ├── build_opt.h │ └── snake_byte_game.ino ├── images ├── 8colors.png ├── BlueVGA.png ├── BlueVGA_Connection.png ├── Bluepill_Joystick.png ├── HelloWorld.jpg ├── HelloWorld.png ├── VGA_Jumpers.png ├── bluevga-SpaceInvaders.png ├── charA.png ├── example1.png └── example2.png ├── keywords.txt ├── library.json ├── library.properties ├── license.txt └── src ├── Joystick.cpp ├── Joystick.h ├── bluebitmap.cpp ├── bluebitmap.h ├── bluevga.cpp ├── bluevga.h ├── bluevgadriver.c ├── bluevgadriver.h └── vgaProperties.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/README.md -------------------------------------------------------------------------------- /examples/Elliptical_Text_Animation/Elliptical_Text_Animation.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/Elliptical_Text_Animation/Elliptical_Text_Animation.ino -------------------------------------------------------------------------------- /examples/Elliptical_Text_Animation/build_opt.h: -------------------------------------------------------------------------------- 1 | -DHAL_TIM_MODULE_ONLY 2 | -------------------------------------------------------------------------------- /examples/Elliptical_Text_Animation/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/Elliptical_Text_Animation/font.h -------------------------------------------------------------------------------- /examples/Simple_Image/Simple_Image.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/Simple_Image/Simple_Image.ino -------------------------------------------------------------------------------- /examples/Simple_Image/build_opt.h: -------------------------------------------------------------------------------- 1 | -DHAL_TIM_MODULE_ONLY -------------------------------------------------------------------------------- /examples/Space_Invaders_Animation_Demo/Space_Invaders_Animation_Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/Space_Invaders_Animation_Demo/Space_Invaders_Animation_Demo.ino -------------------------------------------------------------------------------- /examples/Space_Invaders_Animation_Demo/build_opt.h: -------------------------------------------------------------------------------- 1 | -DHAL_TIM_MODULE_ONLY 2 | -------------------------------------------------------------------------------- /examples/Space_Invaders_Animation_Demo/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/Space_Invaders_Animation_Demo/font.h -------------------------------------------------------------------------------- /examples/Space_Invaders_Animation_Demo/graph_bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/Space_Invaders_Animation_Demo/graph_bitmaps.h -------------------------------------------------------------------------------- /examples/graphDemo_SineCurve/build_opt.h: -------------------------------------------------------------------------------- 1 | -DHAL_TIM_MODULE_ONLY 2 | -------------------------------------------------------------------------------- /examples/graphDemo_SineCurve/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/graphDemo_SineCurve/font.h -------------------------------------------------------------------------------- /examples/graphDemo_SineCurve/graphDemo_SineCurve.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/graphDemo_SineCurve/graphDemo_SineCurve.ino -------------------------------------------------------------------------------- /examples/hello_world/build_opt.h: -------------------------------------------------------------------------------- 1 | -DHAL_TIM_MODULE_ONLY 2 | -------------------------------------------------------------------------------- /examples/hello_world/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/hello_world/font.h -------------------------------------------------------------------------------- /examples/hello_world/hello_world.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/hello_world/hello_world.ino -------------------------------------------------------------------------------- /examples/printTest/build_opt.h: -------------------------------------------------------------------------------- 1 | -DHAL_TIM_MODULE_ONLY 2 | -------------------------------------------------------------------------------- /examples/printTest/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/printTest/font.h -------------------------------------------------------------------------------- /examples/printTest/printTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/printTest/printTest.ino -------------------------------------------------------------------------------- /examples/reading_joystick/build_opt.h: -------------------------------------------------------------------------------- 1 | -DHAL_TIM_MODULE_ONLY 2 | -------------------------------------------------------------------------------- /examples/reading_joystick/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/reading_joystick/font.h -------------------------------------------------------------------------------- /examples/reading_joystick/reading_joystick.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/reading_joystick/reading_joystick.ino -------------------------------------------------------------------------------- /examples/scolling_text/build_opt.h: -------------------------------------------------------------------------------- 1 | -DHAL_TIM_MODULE_ONLY 2 | -------------------------------------------------------------------------------- /examples/scolling_text/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/scolling_text/font.h -------------------------------------------------------------------------------- /examples/scolling_text/scolling_text.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/scolling_text/scolling_text.ino -------------------------------------------------------------------------------- /examples/simple_demo/build_opt.h: -------------------------------------------------------------------------------- 1 | -DHAL_TIM_MODULE_ONLY 2 | -------------------------------------------------------------------------------- /examples/simple_demo/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/simple_demo/font.h -------------------------------------------------------------------------------- /examples/simple_demo/simple_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/simple_demo/simple_demo.ino -------------------------------------------------------------------------------- /examples/snake_byte_game/UserDefinedFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/snake_byte_game/UserDefinedFont.h -------------------------------------------------------------------------------- /examples/snake_byte_game/build_opt.h: -------------------------------------------------------------------------------- 1 | -DHAL_TIM_MODULE_ONLY 2 | -------------------------------------------------------------------------------- /examples/snake_byte_game/snake_byte_game.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/examples/snake_byte_game/snake_byte_game.ino -------------------------------------------------------------------------------- /images/8colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/images/8colors.png -------------------------------------------------------------------------------- /images/BlueVGA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/images/BlueVGA.png -------------------------------------------------------------------------------- /images/BlueVGA_Connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/images/BlueVGA_Connection.png -------------------------------------------------------------------------------- /images/Bluepill_Joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/images/Bluepill_Joystick.png -------------------------------------------------------------------------------- /images/HelloWorld.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/images/HelloWorld.jpg -------------------------------------------------------------------------------- /images/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/images/HelloWorld.png -------------------------------------------------------------------------------- /images/VGA_Jumpers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/images/VGA_Jumpers.png -------------------------------------------------------------------------------- /images/bluevga-SpaceInvaders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/images/bluevga-SpaceInvaders.png -------------------------------------------------------------------------------- /images/charA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/images/charA.png -------------------------------------------------------------------------------- /images/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/images/example1.png -------------------------------------------------------------------------------- /images/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/images/example2.png -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/library.properties -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/license.txt -------------------------------------------------------------------------------- /src/Joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/src/Joystick.cpp -------------------------------------------------------------------------------- /src/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/src/Joystick.h -------------------------------------------------------------------------------- /src/bluebitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/src/bluebitmap.cpp -------------------------------------------------------------------------------- /src/bluebitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/src/bluebitmap.h -------------------------------------------------------------------------------- /src/bluevga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/src/bluevga.cpp -------------------------------------------------------------------------------- /src/bluevga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/src/bluevga.h -------------------------------------------------------------------------------- /src/bluevgadriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/src/bluevgadriver.c -------------------------------------------------------------------------------- /src/bluevgadriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/src/bluevgadriver.h -------------------------------------------------------------------------------- /src/vgaProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoCorbera/BlueVGA/HEAD/src/vgaProperties.h --------------------------------------------------------------------------------