Config files for mappings #19
thijstriemstra
started this conversation in
Ideas
Replies: 2 comments
-
These settings like the MIDI notes, pad type and other settings are changed with MIDI commands. If you run Edrumulus from Linux, I have written a startup script which can include all your custom settings. See: edrumulus/tools/run_edrumulus.sh Line 87 in a3d9a1e There is also another possibility to define your custom pad settings which also works under Windows. You have to install Octave and run this script. Then a GUI like this shows up: There is a button Default Settings in that dialog which assigns all your custom pad settings in one step to Edrumulus. You just have to modify the function in the Octave script with your custom settings: edrumulus/tools/edrumuluscontrol.m Line 513 in a3d9a1e |
Beta Was this translation helpful? Give feedback.
0 replies
-
This type of commit is the direction I am looking for: a54f5d7 Eventually, (re)loading these 'config' files during runtime would be my goal here. |
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
-
Currently pad mappings are hardcoded in
edrumulus.ino
but it would be nice to define this in a separate config file.So this part, for example, would ideally be defined and loaded from a config file:
I would prefer a YAML style config file, but I don't know if libyaml is something you can import/include in a Arduino project. Since this projects targets high performance microcontrollers I would hope libyaml fits in memory etc.
Thoughts?
Beta Was this translation helpful? Give feedback.
All reactions