Update README.md

This commit is contained in:
Edwin Jakobs
2019-09-26 11:41:18 +02:00
committed by GitHub
parent f4024ce76f
commit 06d25b2ca5

View File

@@ -2,7 +2,7 @@
A minimal and limited library for Midi controllers. Orx-midi is a wrapper around javax.midi. A minimal and limited library for Midi controllers. Orx-midi is a wrapper around javax.midi.
## usage ## Usage
```kotlin ```kotlin
@@ -16,4 +16,8 @@ val dev = MidiTransceiver.fromDeviceVendor("BCR2000 [hw:2,0,0]", "ALSA (http://w
dev.controlChanged.listen { dev.controlChanged.listen {
println("${it.channel} ${it.control} ${it.value}") println("${it.channel} ${it.control} ${it.value}")
} }
``` ```
## Further reading
The OPENRNDR guide has a [section on orx-midi](https://guide.openrndr.org/#/10_OPENRNDR_Extras/C04_Midi_controllers) that provides step-by-step documentation for using orx-midi in combination with OPENRNDR.