--- id: initial-config title: Initial Configuration sidebar_label: Initial Configuration slug: /getting-started/initial-config sidebar_position: 4 description: Getting started with the initial configuration of your Meshtastic device including serial, bluetooth, LoRa, and more. --- import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; import LoRaRegions from "../blocks/_lora-regions.mdx"; import Link from "@docusaurus/Link"; ## Supported Clients per Connection Type Depending on your connection, some configuration options are not fully supported. Find out which client is best for your type of connection. #### Serial - [Python CLI](/docs/software/python/cli/) - [Web Client](https://client.meshtastic.org) - [Android App](/docs/category/android-app) #### Bluetooth - [Android App](/docs/category/android-app) - [Web Client](https://client.meshtastic.org) #### Network :::info Connecting over network is only supported on ESP32 devices. ::: - [Web Client](https://client.meshtastic.org) - [Android App](/docs/category/android-app) - [iOS App](/docs/category/apple-apps) - [Python CLI](/docs/software/python/cli/) ## Set Regional Settings In order to start communicating over the mesh, you must set your region. This setting controls which frequency range your device uses and should be set according to your regional location. #### Android 1. Follow the [installation](/docs/software/android/installation) and [usage](/docs/software/python/cli/usage) instructions for [Meshtastic Android](/docs/category/android-app). 2. Open the app, connect to the device from your phone over USB Serial or Bluetooth. 3. Once paired, Click "UNSET" next to the device name. 4. Select the region from the list according to your regional location. #### Apple :::info Configuration of Region, Modem Preset and Hop Limit is available on iOS, iPadOS and macOS at Settings > Radio Configuration > LoRa. ::: #### CLI 1. Install [Meshtastic PythonCLI](/docs/software/python/cli/installation) ```sh pip3 install --upgrade pytap2 pip3 install --upgrade meshtastic ``` 2. Run the following command, replacing `` with the region code listed above according to your regional location. ```sh meshtastic --set lora.region ``` #### Web 1. Open the Meshtastic Web interface: [client.meshtastic.org](https://client.meshtastic.org) 2. Navigate to the **LoRa** menu. 3. Under **Regional Settings**, set your **Region** according to your regional location. 4. Click **Save**. ### Region Codes Refer to [LoRa Region by Country](/docs/configuration/region-by-country) for a more comprehensive list. ## Continue Configuration Now that you have set the LoRa region on your device, you can continue with configuring any additional configs to suit your needs.
Device Configuration