Skip to content

Repeater settings

Eugeny Shlyagin edited this page Jan 18, 2024 · 7 revisions

Description

Why do you need a repeater? For example, to increase the coverage radius between devices.

Repeater Diagram

Settings

How to configure AGLoRa tracker as repeater?

Set I_WANT_TO_SEND_MY_LOCATION as false, MESH_MODE as true, and TTL value is greater than zero.

Don't connect the GPS in this case.

#define I_WANT_TO_SEND_MY_LOCATION false  // "true" by default
#define MESH_MODE true  // "true" by default
#define TTL 3  // Data packet lifetime (for transfer between devices)

If you turn off the BLE, you can use more memory to store waypoints:

#define USE_BLE false  // use BLE output
Clone this wiki locally