> For the complete documentation index, see [llms.txt](https://master-mind-store.gitbook.io/dashboard/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://master-mind-store.gitbook.io/dashboard/free-release/radio/configuration/channel-name.md).

# Channel Name

{% hint style="info" %}
If you provide a simple channel number frequency, it will change that specific channel

Example:

`["1"] = "MRPD CH#1", -- change name of channel 1 only`

`["1.1"] = "MRPD CH#1.1", -- change name of channel 1.1 only`

`["1.2"] = "MRPD CH#1.2", -- change name of channel 1.2 only`
{% endhint %}

{% hint style="info" %}
If you provide a formatter for the channel, it will change all frequency that matches the channel formatter

Example:

`["1.%"] = "MRPD CH#1", -- change every matches 1.% ex: 1.1, 1.2, etc.`

`["2.%"] = "MRPD CH#2", -- change every matches 1.% ex: 2.1, 2.2, etc.`

`["3.%"] = "MRPD CH#3", -- change every matches 1.% ex: 3.1, 3.2, etc.`
{% endhint %}

```lua
Shared.RadioNames = {
    -- template
    --[channel number: string] = string: channel name,
    
    -- example
    ["1"] = "MRPD CH#1", -- change name of channel 1 only
    ["1.%"] = "MRPD CH#1" -- change name of channel 1.% (ex: 1.1, 1.2, ... etc.)
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://master-mind-store.gitbook.io/dashboard/free-release/radio/configuration/channel-name.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.
