diff options
author | Paul Hedderly <paul+github@.mjr.org> | 2021-01-13 08:17:36 +0000 |
---|---|---|
committer | Paul Hedderly <paul+github@.mjr.org> | 2021-01-13 08:17:36 +0000 |
commit | de1cbe2de1c558c21f1566cfa78b20daef828ed5 (patch) | |
tree | e4d475359f0b3a4547da06a0fe1ee970afaf8e96 /configs | |
parent | c85ba5aff2d670791589553073e4c519ef1d8434 (diff) | |
download | midimonster-de1cbe2de1c558c21f1566cfa78b20daef828ed5.tar.gz midimonster-de1cbe2de1c558c21f1566cfa78b20daef828ed5.tar.bz2 midimonster-de1cbe2de1c558c21f1566cfa78b20daef828ed5.zip |
prh: lua example to turn any value input to 1.0 to make pads boolean
Diffstat (limited to 'configs')
-rw-r--r-- | configs/returnone.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/configs/returnone.lua b/configs/returnone.lua new file mode 100644 index 0000000..cde0b03 --- /dev/null +++ b/configs/returnone.lua @@ -0,0 +1,24 @@ +-- ReturnOne by Paul Hedderly +-- Sometimes you just want an on/off from linear pads +-- For example I want to activate scenes in OBS from a Korg NanoPad2 +-- But I dont want to have to thump the pads to get a 1.0 output +-- +-- You could use this as: +-- [midi nanoP] +-- read = nanoPAD2 +-- write = nanoPAD2 +-- [lua trackpad] +-- script = trackpad.lua +-- default-handler = returnone +-- .. +-- nanoP.ch0.note{36..51} > returnone.one{1..16} -- To feed all the 16 pads to +-- returnone.outone1 > obs./obs/scene/1/preview +-- returnone.outone2 > obs./obs/scene/2/preview +-- etc +-- The output channel will be the same as the channel you feed prepended "out" + + +function returnone(v) -- Use a default function - then you can use any input channel name + if v>0 then output("out"..input_channel(),1) end; + if v==0 then output("out"..input_channel(),0) end; +end |