In the previous guide, we introduced how to connect GrowSpace UWB devices to a PC using Tera Term and configure basic settings.

In this second part, we will go over how to:

Each command will be explained with examples and detailed output interpretations.

Command Categories and Functions

Basic System Commands

These commands are used to check system status, reset the device, or configure default parameters.

CommandFunction
siDisplay system information
nmgCheck current UWB operating mode
resetReboot the device
frstFactory reset
laList connected anchors
nisSet PAN ID

Position Tracking Commands (for Tags only)

These commands retrieve real-time position or distance data.

CommandFunctionNote
lecOutput location and anchor distances (CSV)Tag only
lepOutput location only (CSV)Quick check

Tag Configuration Commands

Used to configure the tag’s update rate depending on movement state.

CommandFunction
aursSet location update interval
aurgGet current update intervals

Anchor Configuration Commands

Commands to read or manually set the anchor’s position.

CommandFunction
apgGet current position
apsSet manual position

Command Examples and Output Explanation

si – System Information

The si command displays the current system configuration and status.

Key elements:

nmg – Check Device Mode

현재 장치가 어떤 역할인지 표시.
태그는 tn, 앵커는 an, 리스너는 an (pasv)로 구분됩니다.

reset, frst – Reboot and Factory Reset

Both commands reset the device.
Factory reset (frst) will reset settings, but core identity parameters remain unchanged.

la – List Connected Anchors

Returns the ID and coordinates (x, y, z) of nearby connected anchors.

nis – Set PAN ID

The PAN ID is a 4-digit hexadecimal code and must be the same across all devices to enable communication.
Verify with the si command.

Position Tracking Commands (For Tags Only) lec – Location and Distance (CSV format)

⚠️lec is one of the most commonly used commands for testing positioning quality and logging data for analysis.

lep – Location Only

Tag Update Rate Configuration aurs – Set Update Interval

2. aurg – Get Current Update Settings

Indicates a 100ms interval for both movement and stationary states.

Anchor Position Configuration

apg – Get Anchor Position

Position data is displayed in millimeters.
qf = Quality factor (typically 100 if stable)

aps – Set Anchor Position

Anchor positions must be input in integer millimeters.
Example: -2.5m = -2500

Conclusion

In this guide, we explored how to communicate directly with GrowSpace UWB devices using Tera Term:

This goes beyond simple connection—it empowers developers to diagnose, configure, and log real-world positioning data with precision.

In the next guide, we’ll demonstrate how to connect a GrowSpace UWB tag to an Arduino Mega 2560, send/receive serial data, and parse location values using real example code.

Stay tuned for a hands-on integration tutorial!