mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-08 07:03:39 +00:00
22 lines
428 B
Plaintext
22 lines
428 B
Plaintext
---
|
|
title: Output to module
|
|
sidebar:
|
|
label: Output
|
|
order: 1
|
|
---
|
|
import SchemaInfo from '../../../../components/SchemaInfo.astro';
|
|
|
|
The `module.output` processor takes any payload and outputs to the specified module.
|
|
|
|
<SchemaInfo type="processor" id="module.output"/>
|
|
|
|
### Example
|
|
|
|
Output whatever payload comes through this processor to the `osc-out` module.
|
|
|
|
```yaml
|
|
- type: module.output
|
|
params:
|
|
module: osc-out
|
|
```
|