mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-12 00:53:39 +00:00
22 lines
455 B
Plaintext
22 lines
455 B
Plaintext
---
|
|
title: Create MIDI Control Change
|
|
sidebar:
|
|
label: Create
|
|
order: 1
|
|
---
|
|
import SchemaInfo from '../../../../../components/SchemaInfo.astro';
|
|
|
|
This processor will create a MIDI Control Change message with the specified channel, control number, and control value.
|
|
|
|
<SchemaInfo type="processor" id="midi.control_change.create"/>
|
|
|
|
### Example
|
|
|
|
```yaml
|
|
- type: midi.control_change.create
|
|
params:
|
|
channel: "1"
|
|
control: "64"
|
|
value: "127"
|
|
```
|