├── .gitattributes ├── .gitignore ├── README.md ├── docs ├── printing │ └── orientation.png └── wiring_firmware │ └── potentiometer.PNG ├── fngrs_design └── fngrs.stl └── fngrs_firmware └── main └── main.ino /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwillm/Fngrs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwillm/Fngrs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwillm/Fngrs/HEAD/README.md -------------------------------------------------------------------------------- /docs/printing/orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwillm/Fngrs/HEAD/docs/printing/orientation.png -------------------------------------------------------------------------------- /docs/wiring_firmware/potentiometer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwillm/Fngrs/HEAD/docs/wiring_firmware/potentiometer.PNG -------------------------------------------------------------------------------- /fngrs_design/fngrs.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwillm/Fngrs/HEAD/fngrs_design/fngrs.stl -------------------------------------------------------------------------------- /fngrs_firmware/main/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danwillm/Fngrs/HEAD/fngrs_firmware/main/main.ino --------------------------------------------------------------------------------