├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── html ├── index.tpl └── style.css ├── main ├── component.mk ├── gb_printer.c ├── lodepng.c └── lodepng.h └── partitions.csv /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidklaas/esp32-gameboy-printer/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidklaas/esp32-gameboy-printer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidklaas/esp32-gameboy-printer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidklaas/esp32-gameboy-printer/HEAD/README.md -------------------------------------------------------------------------------- /html/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidklaas/esp32-gameboy-printer/HEAD/html/index.tpl -------------------------------------------------------------------------------- /html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidklaas/esp32-gameboy-printer/HEAD/html/style.css -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidklaas/esp32-gameboy-printer/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/gb_printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidklaas/esp32-gameboy-printer/HEAD/main/gb_printer.c -------------------------------------------------------------------------------- /main/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidklaas/esp32-gameboy-printer/HEAD/main/lodepng.c -------------------------------------------------------------------------------- /main/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidklaas/esp32-gameboy-printer/HEAD/main/lodepng.h -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidklaas/esp32-gameboy-printer/HEAD/partitions.csv --------------------------------------------------------------------------------