midi_send_cc_enhanced
Control MIDI devices with precise context-aware CC messages, analyzing real-time audio effects. Replace basic MIDI CC sending for enhanced musical performance.
Instructions
Send MIDI CC with musical context awareness and real-time analysis of CC effects on audio output. REPLACES basic midi_send_cc with enhanced capabilities.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | No | MIDI channel (1-16) | |
controller | Yes | CC controller number (0-127) | |
outputPort | No | Target MIDI output port name | |
value | Yes | Controller value (0-127) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channel": {
"default": 1,
"description": "MIDI channel (1-16)",
"maximum": 16,
"minimum": 1,
"type": "integer"
},
"controller": {
"description": "CC controller number (0-127)",
"maximum": 127,
"minimum": 0,
"type": "integer"
},
"outputPort": {
"description": "Target MIDI output port name",
"type": "string"
},
"value": {
"description": "Controller value (0-127)",
"maximum": 127,
"minimum": 0,
"type": "integer"
}
},
"required": [
"controller",
"value"
],
"type": "object"
}