Skip to content

Commit 5f28081

Browse files
committed
Fix channel name for layering config
1 parent 7693ed3 commit 5f28081

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

DEVELOPMENT.md

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ in spirit rather than by the letter.
3434
* Prefer to name unsigned loop counters `u` and signed ones `i`
3535
* Place comments above the section they are commenting on
3636
* Use inline comments sparingly
37+
* Do not omit '{}' brackets, even if optional (e.g. single-statement conditional bodies)
38+
* Opening braces stay on the same line as the condition
3739

3840
#### C specific
3941

configs/layering.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
bind = 0.0.0.0
88

99
[midi in]
10-
read = BCF
10+
read = Launch Control
1111

1212
[artnet out]
1313
destination = 255.255.255.255
@@ -18,7 +18,7 @@ script = layering.lua
1818
default-handler = handler
1919

2020
[map]
21-
in.ch1.cc{1..8} > layers.in{0..7}
21+
in.ch1.cc{0..15} > layers.{0..15}
2222
layers.out{0..511} > out.{1..512}
2323

2424
in.ch0.note0 > layers.control

0 commit comments

Comments
 (0)