# Binary to Byte Array

## Overview

![The Binary to Byte Array Node.](https://4263346935-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FLnh3x8s9fddWeG8TaAug%2Fuploads%2Fgit-blob-3125e7c1e357d6d5f39e3df857ea29a0900456f6%2Fbinarytobytearraynode20241.png?alt=media)

The **Binary to Byte Array** takes a series of several bytes and puts them into an **Array** where each element is one byte. So, for example, if some **Binary Value** contains the series of five bytes `01000100 01011100 000001111 000001111 00000111`, this would be turned into the **Array** `[01000100, 01011100, 000001111, 000001111, 000001111]`.

[**Scope**](https://docs.incari.com/incari-studio/2024.1/overview#scopes): **Project**, **Scene**, **Function**, **Prefab**.

## Inputs

| Input             | Type       | Description                                                           |
| ----------------- | ---------- | --------------------------------------------------------------------- |
| *Pulse Input* (►) | **Pulse**  | A standard **Input Pulse**, to trigger the execution of the **Node**. |
| `Binary`          | **Binary** | The inputted **Binary** message.                                      |

## Outputs

| Output             | Type      | Description                                                                                                                                       |
| ------------------ | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
| *Pulse Output* (►) | **Pulse** | A standard **Output Pulse**, to move onto the next **Node** along the **Logic Branch**, once this **Node** has finished its execution.            |
| `Byte Array`       | **Array** | The resulting **Array** which consists of single bytes. The length of the **Array** is equivalent to the number of bytes in the inputted message. |
