Skip to content

Instantly share code, notes, and snippets.

@tomaustin700
Created August 28, 2023 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomaustin700/c5395e76f8c70a386d132332dc663631 to your computer and use it in GitHub Desktop.
Save tomaustin700/c5395e76f8c70a386d132332dc663631 to your computer and use it in GitHub Desktop.
Midi Controller Json Example
{
"Channel": 11,
"Presets": [
{
"Name": "Test1",
"Switch1": {
"CC": [
{
"CC": 1,
"Value": 127
},
{
"CC": 4,
"Value": 127
}
],
"PC": null
},
"Switch2": {
"CC": [
{
"CC": 3,
"Value": 127
},
{
"CC": 5,
"Value": 0
}
],
"PC": null
},
"Switch3": {
"CC": null,
"PC": 2
},
"Switch4": {
"CC": null,
"PC": 45
}
},
{
"Name": "Test2",
"Switch1": {
"CC": [
{
"CC": 1,
"Value": 127
},
{
"CC": 4,
"Value": 127
}
],
"PC": null
},
"Switch2": {
"CC": [
{
"CC": 3,
"Value": 127
},
{
"CC": 5,
"Value": 0
}
],
"PC": null
},
"Switch3": {
"CC": null,
"PC": 2
},
"Switch4": {
"CC": null,
"PC": 45
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment