├── .gitattributes ├── PSNee_V8 ├── PSNee_V8.ino └── include │ ├── config.h │ ├── patching.h │ └── settings.h ├── README.md └── images ├── PSNee_V8_logo.png ├── PSNee_V8_pinout.png ├── console.png └── example.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postal2201/PSNee_V8/HEAD/.gitattributes -------------------------------------------------------------------------------- /PSNee_V8/PSNee_V8.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postal2201/PSNee_V8/HEAD/PSNee_V8/PSNee_V8.ino -------------------------------------------------------------------------------- /PSNee_V8/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postal2201/PSNee_V8/HEAD/PSNee_V8/include/config.h -------------------------------------------------------------------------------- /PSNee_V8/include/patching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postal2201/PSNee_V8/HEAD/PSNee_V8/include/patching.h -------------------------------------------------------------------------------- /PSNee_V8/include/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postal2201/PSNee_V8/HEAD/PSNee_V8/include/settings.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postal2201/PSNee_V8/HEAD/README.md -------------------------------------------------------------------------------- /images/PSNee_V8_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postal2201/PSNee_V8/HEAD/images/PSNee_V8_logo.png -------------------------------------------------------------------------------- /images/PSNee_V8_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postal2201/PSNee_V8/HEAD/images/PSNee_V8_pinout.png -------------------------------------------------------------------------------- /images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postal2201/PSNee_V8/HEAD/images/console.png -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postal2201/PSNee_V8/HEAD/images/example.png --------------------------------------------------------------------------------