From 2e2424d60a6e059ba0908d14222914ef349697fd Mon Sep 17 00:00:00 2001 From: Weird Constructor Date: Thu, 18 Aug 2022 06:29:40 +0200 Subject: [PATCH] Mention MidiCC --- CHANGELOG.md | 1 + README.md | 2 ++ src/lib.rs | 1 + 3 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3415bf5..1c43afe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,3 +18,4 @@ the scope handles for access to it's capture buffers. * Feature: Added WBlockDSP visual programming language utilizing the `synfx-dsp-jit` crate. * Feature: Added the `FormFM` node that was contributed by Dimas Leenman (aka Skythedragon). * Feature: Added `MidiP` node for MIDI pitch/note input. +* Feature: Added `MidiCC` node for MIDI CC input. diff --git a/README.md b/README.md index b75d916..36d604b 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,8 @@ And following DSP nodes: | Mod | RndWk | Random walker, a Sample & Hold noise generator | | IO Util | FbWr / FbRd | Utility modules for feedback in patches | | IO Util | Scope | Oscilloscope for up to 3 channels | +| IO Util | MidiP | MIDI Pitch/Note input from plugin host, DAW or hardware | +| IO Util | MidiCC | MIDI CC input from plugin host, DAW or hardware | ### API Examples diff --git a/src/lib.rs b/src/lib.rs index e107d5f..6f7a420 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -63,6 +63,7 @@ And following DSP nodes: | IO Util | FbWr / FbRd | Utility modules for feedback in patches | | IO Util | Scope | Oscilloscope for up to 3 channels | | IO Util | MidiP | MIDI Pitch/Note input from plugin host, DAW or hardware | +| IO Util | MidiCC | MIDI CC input from plugin host, DAW or hardware | ## API Examples