├── .gitignore ├── .travis.yml ├── README.md ├── data └── readme ├── lib └── readme.txt ├── platformio.ini └── src └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applefreak/esp8266-gameboy-printer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applefreak/esp8266-gameboy-printer/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applefreak/esp8266-gameboy-printer/HEAD/README.md -------------------------------------------------------------------------------- /data/readme: -------------------------------------------------------------------------------- 1 | build the frontend app and copy it here 2 | -------------------------------------------------------------------------------- /lib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applefreak/esp8266-gameboy-printer/HEAD/lib/readme.txt -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applefreak/esp8266-gameboy-printer/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applefreak/esp8266-gameboy-printer/HEAD/src/main.cpp --------------------------------------------------------------------------------