mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-08 23:23:38 +00:00
22 lines
412 B
Plaintext
22 lines
412 B
Plaintext
---
|
|
title: Create MIDI Note On
|
|
sidebar:
|
|
label: Create
|
|
order: 1
|
|
---
|
|
import SchemaInfo from '../../../../../components/SchemaInfo.astro';
|
|
|
|
This processor will create a MIDI Note On message with the specified channel, note, and velocity.
|
|
|
|
<SchemaInfo type="processor" id="midi.note_on.create"/>
|
|
|
|
### Example
|
|
|
|
```yaml
|
|
- type: midi.note_on.create
|
|
params:
|
|
channel: "1"
|
|
note: "60"
|
|
velocity: "127"
|
|
```
|