├── .github └── workflows │ └── main.yml ├── .gitignore ├── GBP_Emu_Micro_pinout_West_McGowan.webp ├── GBP_Emu_Micro_pinout_West_McGowan.webp.png ├── GameBoyPrinterDecoderC ├── Makefile ├── README.md ├── gameboy_printer_protocol.h ├── gbp_bmp.cpp ├── gbp_bmp.h ├── gbp_pkt.cpp ├── gbp_pkt.h ├── gbp_tiles.cpp ├── gbp_tiles.h ├── gpbdecoder.cc ├── image │ ├── bmp.h │ ├── bmp_FixedWidthStream.h │ └── ppm.h ├── outputExamples │ └── pokemonYellowPokedexCharmander.txt └── test │ ├── 2020-08-10_Pokemon_trading_card_compressiontest.txt │ ├── 2020-08-10_Pokemon_trading_card_compressiontest0.bmp │ ├── test.txt │ ├── test0.bmp │ ├── test1.bmp │ └── test2.bmp ├── GameBoyPrinterDecoderJS ├── gameboy_printer_js_decoder.html ├── gameboy_printer_js_raw_decoder.html ├── gbp_gameboyprinter2bpp.js ├── gbp_gameboyprinter2bpp_raw.js ├── rawFunctions.js └── webserial.js ├── GameBoyPrinterEmulator ├── .clang-format ├── .vscode │ ├── arduino.json │ └── c_cpp_properties.json ├── GameBoyPrinterEmulator.ino ├── Makefile ├── gameboy_printer_protocol.h ├── gbp_cbuff.h ├── gbp_pkt.cpp ├── gbp_pkt.h ├── gbp_serial_io.cpp ├── gbp_serial_io.h ├── notes │ ├── 2020-07-09.md │ └── 2020-07-30.md ├── outputExamples │ └── pokemonYellowPokedexCharmander.txt └── test │ ├── 2020-08-02_GameboyPocketCameraJP.txt │ ├── 2020-08-02_PokemonSpeciallPicachuEdition_multiprint.txt │ ├── 2020-08-10_Pokemon_trading_card_compressiontest.txt │ ├── 2020-08-17_Alice_in_Wonderland_palletsupporttest.expected.png │ ├── 2020-08-17_Alice_in_Wonderland_palletsupporttest.txt │ └── gpb_test.cc ├── GameboyPrinterDecoderPython ├── README.md ├── gbp │ ├── __init__.py │ ├── gbpimage.py │ └── gbpparser.py ├── gbpdecoder.py ├── gbpemulator_reader.py ├── output │ ├── .gitignore │ └── README.txt └── testdata │ ├── 2020-08-10_Pokemon_trading_card_compressiontest-2x.png │ ├── 2020-08-10_Pokemon_trading_card_compressiontest.png │ ├── 2020-08-10_Pokemon_trading_card_compressiontest.txt │ ├── test1-2x.png │ ├── test1.png │ ├── test1.txt │ ├── test2-2x.png │ ├── test2.png │ ├── test2.txt │ ├── test3-2x.png │ ├── test3.png │ └── test3.txt ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── WEBUSB.md ├── _config.yml ├── research ├── Captures │ ├── 2020-08-02_BrianKhuu │ │ ├── 2020-08-02_GameboyPocketCameraJP.txt │ │ └── 2020-08-02_PokemonSpeciallPicachuEdition.txt │ └── 2020-08-10_RaphaelBOICHOT │ │ ├── Game_Boy_Camera_gbp_dev.txt │ │ ├── Links_awakening_DX_gbp_dev.txt │ │ ├── Pokemon_Crystal_gbp_dev.txt │ │ ├── Pokemon_Yellow_gbp_dev.txt │ │ ├── Pokemon_trading_card_gbp_dev.txt │ │ ├── Pokemon_trading_card_with_sniffer.txt │ │ └── SMB_Deluxe_with_Sniffer.txt ├── Game_Boy_Color_-_Game_Boy_Printer_FAQ_-_Game_Boy_Color_-_By_mdude4_-_GameFAQs.pdf ├── In_Depth__The_Game_Boy_Printer.pdf ├── gameboy2bpp.txt ├── gameboy_to_ghost_printer.png ├── gameboy_to_ghost_printer.svg ├── gb-printer.pdf ├── gb-programming-manual.pdf └── gb_camera_doc_v1_1_1.pdf ├── sample_image ├── Nano_shield.jpg ├── PCB_for_Nano.png ├── bk_portrait.png ├── bk_portrate.txt ├── gameboy_printer_emulator.png ├── gameboy_printer_emulator.txt ├── gbp_black_screen.png ├── gbp_white_screen.png ├── my_desk.png ├── my_desk.txt ├── webusb-ide.png ├── webusb-library.png └── webusb-notification.png ├── showcase ├── SlovenianComputerMuseumLjubljana │ ├── 3DprintedGBLinkPlug.jpg │ └── VT100.jpg └── showcase.md └── webbasedtools ├── arduino-web-uploader.v1.1.2.js ├── arduino_nano ├── Blink.ino.eightanaloginputs.hex ├── GameBoyPrinterEmulator.arduino.nano.v3.3.0.hex ├── GameBoyPrinterEmulator.arduino.nano.v3.3.0.with_bootloader.hex └── index.html ├── readme.md └── webserialConsole.html /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | *.pyc 4 | 5 | -------------------------------------------------------------------------------- /GBP_Emu_Micro_pinout_West_McGowan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GBP_Emu_Micro_pinout_West_McGowan.webp -------------------------------------------------------------------------------- /GBP_Emu_Micro_pinout_West_McGowan.webp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GBP_Emu_Micro_pinout_West_McGowan.webp.png -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/Makefile -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/README.md -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/gameboy_printer_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/gameboy_printer_protocol.h -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/gbp_bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/gbp_bmp.cpp -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/gbp_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/gbp_bmp.h -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/gbp_pkt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/gbp_pkt.cpp -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/gbp_pkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/gbp_pkt.h -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/gbp_tiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/gbp_tiles.cpp -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/gbp_tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/gbp_tiles.h -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/gpbdecoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/gpbdecoder.cc -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/image/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/image/bmp.h -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/image/bmp_FixedWidthStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/image/bmp_FixedWidthStream.h -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/image/ppm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/image/ppm.h -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/outputExamples/pokemonYellowPokedexCharmander.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/outputExamples/pokemonYellowPokedexCharmander.txt -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/test/2020-08-10_Pokemon_trading_card_compressiontest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/test/2020-08-10_Pokemon_trading_card_compressiontest.txt -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/test/2020-08-10_Pokemon_trading_card_compressiontest0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/test/2020-08-10_Pokemon_trading_card_compressiontest0.bmp -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/test/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/test/test.txt -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/test/test0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/test/test0.bmp -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/test/test1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/test/test1.bmp -------------------------------------------------------------------------------- /GameBoyPrinterDecoderC/test/test2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderC/test/test2.bmp -------------------------------------------------------------------------------- /GameBoyPrinterDecoderJS/gameboy_printer_js_decoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderJS/gameboy_printer_js_decoder.html -------------------------------------------------------------------------------- /GameBoyPrinterDecoderJS/gameboy_printer_js_raw_decoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderJS/gameboy_printer_js_raw_decoder.html -------------------------------------------------------------------------------- /GameBoyPrinterDecoderJS/gbp_gameboyprinter2bpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderJS/gbp_gameboyprinter2bpp.js -------------------------------------------------------------------------------- /GameBoyPrinterDecoderJS/gbp_gameboyprinter2bpp_raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderJS/gbp_gameboyprinter2bpp_raw.js -------------------------------------------------------------------------------- /GameBoyPrinterDecoderJS/rawFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderJS/rawFunctions.js -------------------------------------------------------------------------------- /GameBoyPrinterDecoderJS/webserial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterDecoderJS/webserial.js -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/.clang-format -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/.vscode/arduino.json -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/GameBoyPrinterEmulator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/GameBoyPrinterEmulator.ino -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/Makefile -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/gameboy_printer_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/gameboy_printer_protocol.h -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/gbp_cbuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/gbp_cbuff.h -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/gbp_pkt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/gbp_pkt.cpp -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/gbp_pkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/gbp_pkt.h -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/gbp_serial_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/gbp_serial_io.cpp -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/gbp_serial_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/gbp_serial_io.h -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/notes/2020-07-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/notes/2020-07-09.md -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/notes/2020-07-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/notes/2020-07-30.md -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/outputExamples/pokemonYellowPokedexCharmander.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/outputExamples/pokemonYellowPokedexCharmander.txt -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/test/2020-08-02_GameboyPocketCameraJP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/test/2020-08-02_GameboyPocketCameraJP.txt -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/test/2020-08-02_PokemonSpeciallPicachuEdition_multiprint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/test/2020-08-02_PokemonSpeciallPicachuEdition_multiprint.txt -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/test/2020-08-10_Pokemon_trading_card_compressiontest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/test/2020-08-10_Pokemon_trading_card_compressiontest.txt -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/test/2020-08-17_Alice_in_Wonderland_palletsupporttest.expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/test/2020-08-17_Alice_in_Wonderland_palletsupporttest.expected.png -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/test/2020-08-17_Alice_in_Wonderland_palletsupporttest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/test/2020-08-17_Alice_in_Wonderland_palletsupporttest.txt -------------------------------------------------------------------------------- /GameBoyPrinterEmulator/test/gpb_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameBoyPrinterEmulator/test/gpb_test.cc -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/README.md -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/gbp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/gbp/__init__.py -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/gbp/gbpimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/gbp/gbpimage.py -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/gbp/gbpparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/gbp/gbpparser.py -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/gbpdecoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/gbpdecoder.py -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/gbpemulator_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/gbpemulator_reader.py -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/output/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | *.txt 3 | 4 | -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/output/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/output/README.txt -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/2020-08-10_Pokemon_trading_card_compressiontest-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/2020-08-10_Pokemon_trading_card_compressiontest-2x.png -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/2020-08-10_Pokemon_trading_card_compressiontest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/2020-08-10_Pokemon_trading_card_compressiontest.png -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/2020-08-10_Pokemon_trading_card_compressiontest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/2020-08-10_Pokemon_trading_card_compressiontest.txt -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/test1-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/test1-2x.png -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/test1.png -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/test1.txt -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/test2-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/test2-2x.png -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/test2.png -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/test2.txt -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/test3-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/test3-2x.png -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/test3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/test3.png -------------------------------------------------------------------------------- /GameboyPrinterDecoderPython/testdata/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/GameboyPrinterDecoderPython/testdata/test3.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /WEBUSB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/WEBUSB.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/_config.yml -------------------------------------------------------------------------------- /research/Captures/2020-08-02_BrianKhuu/2020-08-02_GameboyPocketCameraJP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/Captures/2020-08-02_BrianKhuu/2020-08-02_GameboyPocketCameraJP.txt -------------------------------------------------------------------------------- /research/Captures/2020-08-02_BrianKhuu/2020-08-02_PokemonSpeciallPicachuEdition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/Captures/2020-08-02_BrianKhuu/2020-08-02_PokemonSpeciallPicachuEdition.txt -------------------------------------------------------------------------------- /research/Captures/2020-08-10_RaphaelBOICHOT/Game_Boy_Camera_gbp_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/Captures/2020-08-10_RaphaelBOICHOT/Game_Boy_Camera_gbp_dev.txt -------------------------------------------------------------------------------- /research/Captures/2020-08-10_RaphaelBOICHOT/Links_awakening_DX_gbp_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/Captures/2020-08-10_RaphaelBOICHOT/Links_awakening_DX_gbp_dev.txt -------------------------------------------------------------------------------- /research/Captures/2020-08-10_RaphaelBOICHOT/Pokemon_Crystal_gbp_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/Captures/2020-08-10_RaphaelBOICHOT/Pokemon_Crystal_gbp_dev.txt -------------------------------------------------------------------------------- /research/Captures/2020-08-10_RaphaelBOICHOT/Pokemon_Yellow_gbp_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/Captures/2020-08-10_RaphaelBOICHOT/Pokemon_Yellow_gbp_dev.txt -------------------------------------------------------------------------------- /research/Captures/2020-08-10_RaphaelBOICHOT/Pokemon_trading_card_gbp_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/Captures/2020-08-10_RaphaelBOICHOT/Pokemon_trading_card_gbp_dev.txt -------------------------------------------------------------------------------- /research/Captures/2020-08-10_RaphaelBOICHOT/Pokemon_trading_card_with_sniffer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/Captures/2020-08-10_RaphaelBOICHOT/Pokemon_trading_card_with_sniffer.txt -------------------------------------------------------------------------------- /research/Captures/2020-08-10_RaphaelBOICHOT/SMB_Deluxe_with_Sniffer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/Captures/2020-08-10_RaphaelBOICHOT/SMB_Deluxe_with_Sniffer.txt -------------------------------------------------------------------------------- /research/Game_Boy_Color_-_Game_Boy_Printer_FAQ_-_Game_Boy_Color_-_By_mdude4_-_GameFAQs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/Game_Boy_Color_-_Game_Boy_Printer_FAQ_-_Game_Boy_Color_-_By_mdude4_-_GameFAQs.pdf -------------------------------------------------------------------------------- /research/In_Depth__The_Game_Boy_Printer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/In_Depth__The_Game_Boy_Printer.pdf -------------------------------------------------------------------------------- /research/gameboy2bpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/gameboy2bpp.txt -------------------------------------------------------------------------------- /research/gameboy_to_ghost_printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/gameboy_to_ghost_printer.png -------------------------------------------------------------------------------- /research/gameboy_to_ghost_printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/gameboy_to_ghost_printer.svg -------------------------------------------------------------------------------- /research/gb-printer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/gb-printer.pdf -------------------------------------------------------------------------------- /research/gb-programming-manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/gb-programming-manual.pdf -------------------------------------------------------------------------------- /research/gb_camera_doc_v1_1_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/research/gb_camera_doc_v1_1_1.pdf -------------------------------------------------------------------------------- /sample_image/Nano_shield.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/Nano_shield.jpg -------------------------------------------------------------------------------- /sample_image/PCB_for_Nano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/PCB_for_Nano.png -------------------------------------------------------------------------------- /sample_image/bk_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/bk_portrait.png -------------------------------------------------------------------------------- /sample_image/bk_portrate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/bk_portrate.txt -------------------------------------------------------------------------------- /sample_image/gameboy_printer_emulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/gameboy_printer_emulator.png -------------------------------------------------------------------------------- /sample_image/gameboy_printer_emulator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/gameboy_printer_emulator.txt -------------------------------------------------------------------------------- /sample_image/gbp_black_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/gbp_black_screen.png -------------------------------------------------------------------------------- /sample_image/gbp_white_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/gbp_white_screen.png -------------------------------------------------------------------------------- /sample_image/my_desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/my_desk.png -------------------------------------------------------------------------------- /sample_image/my_desk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/my_desk.txt -------------------------------------------------------------------------------- /sample_image/webusb-ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/webusb-ide.png -------------------------------------------------------------------------------- /sample_image/webusb-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/webusb-library.png -------------------------------------------------------------------------------- /sample_image/webusb-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/sample_image/webusb-notification.png -------------------------------------------------------------------------------- /showcase/SlovenianComputerMuseumLjubljana/3DprintedGBLinkPlug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/showcase/SlovenianComputerMuseumLjubljana/3DprintedGBLinkPlug.jpg -------------------------------------------------------------------------------- /showcase/SlovenianComputerMuseumLjubljana/VT100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/showcase/SlovenianComputerMuseumLjubljana/VT100.jpg -------------------------------------------------------------------------------- /showcase/showcase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/showcase/showcase.md -------------------------------------------------------------------------------- /webbasedtools/arduino-web-uploader.v1.1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/webbasedtools/arduino-web-uploader.v1.1.2.js -------------------------------------------------------------------------------- /webbasedtools/arduino_nano/Blink.ino.eightanaloginputs.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/webbasedtools/arduino_nano/Blink.ino.eightanaloginputs.hex -------------------------------------------------------------------------------- /webbasedtools/arduino_nano/GameBoyPrinterEmulator.arduino.nano.v3.3.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/webbasedtools/arduino_nano/GameBoyPrinterEmulator.arduino.nano.v3.3.0.hex -------------------------------------------------------------------------------- /webbasedtools/arduino_nano/GameBoyPrinterEmulator.arduino.nano.v3.3.0.with_bootloader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/webbasedtools/arduino_nano/GameBoyPrinterEmulator.arduino.nano.v3.3.0.with_bootloader.hex -------------------------------------------------------------------------------- /webbasedtools/arduino_nano/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/webbasedtools/arduino_nano/index.html -------------------------------------------------------------------------------- /webbasedtools/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/webbasedtools/readme.md -------------------------------------------------------------------------------- /webbasedtools/webserialConsole.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mofosyne/arduino-gameboy-printer-emulator/HEAD/webbasedtools/webserialConsole.html --------------------------------------------------------------------------------