├── LICENSE ├── README.md ├── VGA_font8x8.h ├── VGA_t4.cpp ├── VGA_t4.h ├── examples ├── mandelbrot │ └── mandelbrot.ino ├── vgagfxengine │ └── vgagfxengine.ino ├── vgatest │ └── vgatest.ino ├── vgatestalign │ └── vgatestalign.ino └── vgatestpatern │ └── vgatestpatern.ino ├── images └── vga.png ├── library.json ├── library.properties └── schematic ├── Teensy 4.1 R2R 8bits VGA DAC.png ├── Teensy_41_R2R_8bits_VGA_DAC.JPG └── schematic_T4VGA.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/README.md -------------------------------------------------------------------------------- /VGA_font8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/VGA_font8x8.h -------------------------------------------------------------------------------- /VGA_t4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/VGA_t4.cpp -------------------------------------------------------------------------------- /VGA_t4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/VGA_t4.h -------------------------------------------------------------------------------- /examples/mandelbrot/mandelbrot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/examples/mandelbrot/mandelbrot.ino -------------------------------------------------------------------------------- /examples/vgagfxengine/vgagfxengine.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/examples/vgagfxengine/vgagfxengine.ino -------------------------------------------------------------------------------- /examples/vgatest/vgatest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/examples/vgatest/vgatest.ino -------------------------------------------------------------------------------- /examples/vgatestalign/vgatestalign.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/examples/vgatestalign/vgatestalign.ino -------------------------------------------------------------------------------- /examples/vgatestpatern/vgatestpatern.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/examples/vgatestpatern/vgatestpatern.ino -------------------------------------------------------------------------------- /images/vga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/images/vga.png -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/library.properties -------------------------------------------------------------------------------- /schematic/Teensy 4.1 R2R 8bits VGA DAC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/schematic/Teensy 4.1 R2R 8bits VGA DAC.png -------------------------------------------------------------------------------- /schematic/Teensy_41_R2R_8bits_VGA_DAC.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/schematic/Teensy_41_R2R_8bits_VGA_DAC.JPG -------------------------------------------------------------------------------- /schematic/schematic_T4VGA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-MarcHarvengt/VGA_t4/HEAD/schematic/schematic_T4VGA.png --------------------------------------------------------------------------------