mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-09-01 02:09:02 +00:00
22 lines
435 B
Plaintext
22 lines
435 B
Plaintext
---
|
|
title: Create MIDI Prgoram Change
|
|
sidebar:
|
|
label: Create
|
|
order: 1
|
|
---
|
|
import SchemaInfo from '../../../../../components/SchemaInfo.astro';
|
|
|
|
This processor will create a MIDI Program Change message with the specified channel and program number.
|
|
|
|
<SchemaInfo type="processor" id="midi.program_change.create"/>
|
|
|
|
### Example
|
|
|
|
```yaml
|
|
- id: create
|
|
type: midi.program_change.create
|
|
params:
|
|
channel: "1"
|
|
program: "10"
|
|
```
|