Files
showbridge-docs/src/content/docs/processors/midi/note_on/create.mdx
T
2026-06-01 18:03:47 -05:00

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"
```