├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── Model01-Firmware.ino ├── README.md ├── library.properties ├── sketch.json └── src └── Model01-Firmware.h /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .#* 3 | /output/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyboardio/Model01-Firmware/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyboardio/Model01-Firmware/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyboardio/Model01-Firmware/HEAD/Makefile -------------------------------------------------------------------------------- /Model01-Firmware.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyboardio/Model01-Firmware/HEAD/Model01-Firmware.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyboardio/Model01-Firmware/HEAD/README.md -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyboardio/Model01-Firmware/HEAD/library.properties -------------------------------------------------------------------------------- /sketch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyboardio/Model01-Firmware/HEAD/sketch.json -------------------------------------------------------------------------------- /src/Model01-Firmware.h: -------------------------------------------------------------------------------- 1 | // Lets make cpplint happy! 2 | #pragma once 3 | --------------------------------------------------------------------------------