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

22 lines
416 B
Plaintext

---
title: Create MIDI Note Off
sidebar:
label: Create
order: 1
---
import SchemaInfo from '../../../../../components/SchemaInfo.astro';
This processor will create a MIDI Note Off message with the specified channel, note, and velocity.
<SchemaInfo type="processor" id="midi.note_off.create"/>
### Example
```yaml
- type: midi.note_off.create
params:
channel: "1"
note: "60"
velocity: "127"
```