# Signal

The Signal mechanic lets you control light sources of nearby furniture using just 1 furniture, meaning you can make light switches

{% hint style="danger" %}
**Setting the `radius` too high will result in lag and possibly crashing!**
{% endhint %}

### Light switch that controls furniture in a radius of 15 (31x31x31) on channel 1.00:

```yaml
Mechanics:
  furniture:
    furniture:
      signal:
        radius: 15         # Can be any integer (1, 2, 48594, 2147483647) DON'T MAKE THIS VALUE HIGH.
        channel: 1.00      # Can be any double (1, 1.00, 0.001, 12.34, 3.657).
        role: TRANSMITTER  # TRANSMITTER makes it be the "controller".
```

### Light that gets toggled if it's in the range of a channel 1.00 transmitter

```yaml
Mechanics:
  furniture:
    furniture:
      signal:
        channel: 1.00   # Same channel as the TRANSMITTER (Light switch) above.
        role: RECEIVER  # RECEIVER makes it receive.
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nexoaddon.gitbook.io/docs/mechanics/signal.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
