Convert Received Signal Strength Indicator (RSSI) to absolute power (dBm) using Cisco, Android, Direct, or custom linear models.
RSSI (Received Signal Strength Indicator) is a dimensionless, relative metric often used by wireless chipsets to indicate signal strength. In contrast, dBm (decibel-milliwatts) is an absolute power measurement referenced to 1 milliwatt. Converting between them requires vendor‑specific calibration because RSSI values are rarely standardized.
This tool implements three widely adopted models plus a fully customizable linear transformation, empowering network engineers, embedded developers, and RF technicians to accurately estimate received power.
| Standard / Vendor | Conversion Equation | Typical Use |
|---|---|---|
| Direct (native dBm) | dBm = RSSI | Some Wi-Fi adapters, professional spectrum analyzers |
| Cisco Aironet | dBm = (RSSI/2) - 100 | Legacy Cisco wireless gear, RSSI range 0–100 |
| Android / Broadcom | dBm = RSSI - 100 | Common Android WiFi stack (RSSI 0–100 maps to -100 to 0 dBm) |
| Custom linear | dBm = a·RSSI + b | Proprietary devices, after empirical calibration |
A network team at a large convention center used Cisco access points reporting RSSI values between 15 and 75. Using the Cisco conversion (dBm = RSSI/2 – 100), they mapped client RSSI 45 → -77.5 dBm, which is near the sensitivity limit for 802.11ac. By relocating APs, they improved RSSI to 60 (-70 dBm), increasing throughput by 40%. This converter helps field engineers quickly translate raw RSSI to actionable dBm thresholds for roaming and coverage design.
To derive accurate α and β for non‑standard hardware:
This procedure is crucial for IoT sensor networks, drone telemetry, and custom 2.4 GHz modules.
Our visual bar dynamically adapts to these thresholds, providing instant feedback for network planning.
dBm is a logarithmic power unit: P_dBm = 10·log₁₀(P_mW). For example, 1 mW = 0 dBm, 0.001 mW = -30 dBm. Received power decreases with distance according to the Friis transmission equation. RSSI values often show a near‑linear relation with dBm over the operating range of the receiver’s AGC (automatic gain control). Understanding this conversion is essential for range estimation and link budget analysis.