Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Obtain the CC values #35

Open
pasdiane opened this issue May 26, 2023 · 2 comments
Open

Obtain the CC values #35

pasdiane opened this issue May 26, 2023 · 2 comments

Comments

@pasdiane
Copy link

Hi! Is possible to obtain the CC values for each of the configured sounds? Can be reached in any "readable" format inside the files? I am using a midi controller to modify the sounds and this feature would be very interesting in order to simplify the programming of the CC midi messages sended to my POD2.0. Thanks in advance and thanks for your work, it is great!

@arteme
Copy link
Owner

arteme commented May 30, 2023

Hi,

There isn't a readable format anywhere currently. It is a good idea to add this though as it might also make debugging easier. What you could do is run the app from a terminal (if you're in Windows, it already starts with a terminal window in the background) and check for set "cc.XX" = "YY" messages. You can do something like this:

$ ./Pod-UI-v1.1.0-x86_64.AppImage  | grep set

Then, if you set "Drive" to 76%, for example, you'll see:

023-05-30T09:27:55.696Z INFO  [pod_core::controller] set "drive" = 48 <UI>
2023-05-30T09:27:55.697Z INFO  [pod_core::controller] set "cc.13" = 96 <UI>

Which gives you the actual control value 48 (0.76 * 64) the CC 13 and the CC value 96 (0.76 * 127).

@pasdiane
Copy link
Author

pasdiane commented Jun 1, 2023

Thank you very much. This works for me! With this instruction I cas easily "see" each of the CC parameters. As I am on MacOs, I leave here the command to run the app from terminal for other mac OS users:

/Applications/Pod-UI.app/Contents/MacOS/pod-gui | grep set

Thanks again!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants