diff options
author | Paul Hedderly <paul+github@.mjr.org> | 2021-07-26 14:06:52 +0100 |
---|---|---|
committer | Paul Hedderly <paul+github@.mjr.org> | 2021-07-26 14:06:52 +0100 |
commit | 58bdce5373792ba63571ae6833d2ba2c22749a98 (patch) | |
tree | 8bd0ac563ed2558e22a03b6de92a00a8a7f2942d /configs | |
parent | f0ea4b808a582baf5bd77ab7939ff1fc455e64f1 (diff) | |
download | midimonster-58bdce5373792ba63571ae6833d2ba2c22749a98.tar.gz midimonster-58bdce5373792ba63571ae6833d2ba2c22749a98.tar.bz2 midimonster-58bdce5373792ba63571ae6833d2ba2c22749a98.zip |
prh: new example return just one - like bool, but just one
Diffstat (limited to 'configs')
-rw-r--r-- | configs/returnjustone.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/configs/returnjustone.lua b/configs/returnjustone.lua new file mode 100644 index 0000000..c1b1632 --- /dev/null +++ b/configs/returnjustone.lua @@ -0,0 +1,23 @@ +-- ReturnOne by Paul Hedderly +-- Sometimes you just want just an on - and from any imput but 0 +-- 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 returnjustone(v) -- Use a default function - then you can use any input channel name + if v>0 then output("out"..input_channel(),1) end; +end |