aboutsummaryrefslogtreecommitdiffhomepage
path: root/configs
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2020-04-25 00:23:57 +0200
committercbdev <cb@cbcdn.com>2020-04-25 00:23:57 +0200
commitee086b47e5171698ed9c221e704120522f6abb73 (patch)
tree392f4220379aefb5b56179a00ac83e27bf3d01f6 /configs
parent4a575cd3c466abfccf4516f5e9f6eacd534f4dc1 (diff)
downloadmidimonster-ee086b47e5171698ed9c221e704120522f6abb73.tar.gz
midimonster-ee086b47e5171698ed9c221e704120522f6abb73.tar.bz2
midimonster-ee086b47e5171698ed9c221e704120522f6abb73.zip
Add rtpmidi to README, add example config
Diffstat (limited to 'configs')
-rw-r--r--configs/print.lua5
-rw-r--r--configs/rtpmidi.cfg22
2 files changed, 27 insertions, 0 deletions
diff --git a/configs/print.lua b/configs/print.lua
new file mode 100644
index 0000000..c6391d3
--- /dev/null
+++ b/configs/print.lua
@@ -0,0 +1,5 @@
+-- This function prints the name of the channel it handles and it's value
+-- It can be used for a simple debug output with the `default-handler` configuration option
+function printchannel(value)
+ print(input_channel() .. " @ " .. value)
+end
diff --git a/configs/rtpmidi.cfg b/configs/rtpmidi.cfg
new file mode 100644
index 0000000..4128274
--- /dev/null
+++ b/configs/rtpmidi.cfg
@@ -0,0 +1,22 @@
+; Simple RTP MIDI example configuration
+
+[backend rtpmidi]
+; This causes the backend itself to output channel values
+detect = on
+; When connecting multiple MIDIMonster hosts via RTP MIDI, set this to something else on each computer
+mdns-name = midimonster-host
+
+[rtpmidi rtp]
+mode = apple
+; Invite everyone we see on the network
+invite = *
+
+; This instance just sends all incoming events to the `printchannel` function
+[lua print]
+script = print.lua
+default-handler = printchannel
+
+; Map all notes and CC's coming in to the Lua instance
+[map]
+rtp.ch{0..15}.cc{0..127} > print.ch{0..15}.cc{0..127}
+rtp.ch{0..15}.note{0..127} > print.ch{0..15}.cnote{0..127}