mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-09-01 02:09:02 +00:00
19 lines
447 B
Plaintext
19 lines
447 B
Plaintext
---
|
|
title: Decode OSC Message
|
|
sidebar:
|
|
label: Decode
|
|
order: 3
|
|
---
|
|
import SchemaInfo from '../../../../../components/SchemaInfo.astro';
|
|
|
|
The `osc.message.decode` processor takes a array of bytes and turn it into OSC message if it can be. This processor will return an error if the bytes cannot be parsed as an OSC message
|
|
|
|
<SchemaInfo type="processor" id="osc.message.decode"/>
|
|
|
|
### Example
|
|
|
|
```yaml
|
|
- id: decode
|
|
type: osc.message.decode
|
|
```
|