aboutsummaryrefslogtreecommitdiffhomepage
path: root/configs/rtpmidi.cfg
blob: 3223bd745a14e5249d4a062fc7572d033025bee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
; Simple RTP MIDI example configuration

[backend rtpmidi]
; This causes the backend itself to print channel values as they come in
detect = on
; When connecting multiple MIDIMonster hosts via RTP MIDI, set this to something different 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}