From 06d25b2ca573ae2afa4e53814b12d9b53b615120 Mon Sep 17 00:00:00 2001 From: Edwin Jakobs Date: Thu, 26 Sep 2019 11:41:18 +0200 Subject: [PATCH] Update README.md --- orx-midi/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/orx-midi/README.md b/orx-midi/README.md index 5df1b32a..e8bc8696 100644 --- a/orx-midi/README.md +++ b/orx-midi/README.md @@ -2,7 +2,7 @@ A minimal and limited library for Midi controllers. Orx-midi is a wrapper around javax.midi. -## usage +## Usage ```kotlin @@ -16,4 +16,8 @@ val dev = MidiTransceiver.fromDeviceVendor("BCR2000 [hw:2,0,0]", "ALSA (http://w dev.controlChanged.listen { println("${it.channel} ${it.control} ${it.value}") } -``` \ No newline at end of file +``` + +## 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.