Exclusion / inclusion of disk drives and notes in the mapper settings #188
Unanswered
SouceCalve
asked this question in
Q&A
Replies: 4 comments
-
In the first script box (I'm fairly sure), you can use c<6 for the first 6,
and c==6 for the 7th one. (If that doesn't work, let me know, not at a
computer right now, so apologies for the short response)
…On Tue, May 23, 2023, 08:23 homayk228 ***@***.***> wrote:
I have a dire need to rule out which drives I can use with one controller,
and also select the notes (range of notes) that can be played by it. The
problem is that I don't understand how to do this, so please help.
I was able to fix 1-6 drives to mapper 1 using
(c+1)%7
And my channel 7 is a speaker, to which I would like to output very
high-frequency sounds, it is attached to mapper 2 using
(c+1)/7
—
Reply to this email directly, view it on GitHub
<#188>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADSF6DWN24MXSIOK2YO2E3XHTI6TANCNFSM6AAAAAAYMCBAFY>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
-
For filtering devices work |
Beta Was this translation helpful? Give feedback.
0 replies
-
Not working for notes |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ah, sorry, if I remember correctly, `n` is the variable for the note
number, so you could do e.g. `c<6 && n<48` (or whatever note range you
wanted).
I can't remember off hand if all 128 MIDI notes are supported out of the
box; you might need to modify a max note variable in the Arduino code
somewhere. I can check once I'm at a computer again, but hopefully that's
enough to get your started.
*Edit: Double checked and `n` is the right variable, so I think that should work for you.*
…On Wed, May 24, 2023, 07:49 homayk228 ***@***.***> wrote:
Not working for notes
—
Reply to this email directly, view it on GitHub
<#188 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADSF6CDKA6VTZUI2ARPPI3XHYNYHANCNFSM6AAAAAAYMCBAFY>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a dire need to rule out which drives I can use with one controller, and also select the notes (range of notes) that can be played by it. The problem is that I don't understand how to do this, so please help.
I was able to fix 1-6 drives to mapper 1 using
(c+1)%7
And my channel 7 is a speaker, to which I would like to output very high-frequency sounds, it is attached to mapper 2 using
(c+1)/7
Beta Was this translation helpful? Give feedback.
All reactions