├── .gitignore ├── Examples ├── Joystick │ └── Joystick.ino ├── Keyboard │ └── Keyboard.ino └── Notesensor │ └── Notesensor.ino ├── LICENSE ├── OPA.cpp ├── OPA.h ├── README ├── README.md ├── Sketches └── EditorBridge.ino └── keywords.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marzac/OPA-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/Joystick/Joystick.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marzac/OPA-Library/HEAD/Examples/Joystick/Joystick.ino -------------------------------------------------------------------------------- /Examples/Keyboard/Keyboard.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marzac/OPA-Library/HEAD/Examples/Keyboard/Keyboard.ino -------------------------------------------------------------------------------- /Examples/Notesensor/Notesensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marzac/OPA-Library/HEAD/Examples/Notesensor/Notesensor.ino -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marzac/OPA-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /OPA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marzac/OPA-Library/HEAD/OPA.cpp -------------------------------------------------------------------------------- /OPA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marzac/OPA-Library/HEAD/OPA.h -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marzac/OPA-Library/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marzac/OPA-Library/HEAD/README.md -------------------------------------------------------------------------------- /Sketches/EditorBridge.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marzac/OPA-Library/HEAD/Sketches/EditorBridge.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marzac/OPA-Library/HEAD/keywords.txt --------------------------------------------------------------------------------