2.4 GHz Wi-Fi
2.4 GHz
Core Technical Specifications
Real-World Devices & Applications
IoT & Smart Home
- ESP8266 / ESP32 IoT devices
- Smart plugs, bulbs, cameras (Tuya, TP-Link, Shelly)
- Voice assistants (Alexa, Google Home)
- Smart TVs and streaming devices
Networking
- Wi-Fi access points and routers
- Mesh networking systems (Eero, Google Nest)
- Wi-Fi range extenders / repeaters
Reference Circuits & Schematics
ESP8266 / ESP32 Wi-Fi Module
The most popular Wi-Fi MCUs for IoT with full TCP/IP stack and radio on-chip.
| Pin | Description |
|---|---|
VIN / 3.3V
|
5V via USB or 3.3V regulated |
GND
|
Ground |
GPIO0
|
Boot mode (LOW=flash, HIGH=run) |
TX/RX
|
UART for programming and debug |
ANT
|
On-board PCB or u.FL for external |
Circuit Walk-Through
The ESP connects to Wi-Fi using SSID/password in firmware. Operates as STA, AP, or both. GPIO pins interface sensors/actuators while Wi-Fi stack handles TCP/UDP/MQTT.
Signal Structure & Waveform Analysis
2.4 GHz Channel Layout
14 channels (13 common), each 22 MHz wide with 5 MHz spacing causing overlap.
Analysis & Capture Tips
- Wi-Fi Analyser app to scan channels and identify congestion
- Wireshark filter wlan.fc.type_subtype == 0x000c for deauth frames
- Check HT40 vs HT20 — HT40 in crowded areas causes harm
- ESP: WiFi.RSSI() below −75 dBm = weak signal
Bench Troubleshooting & Repair Guide
1. Channel Congestion
Wi-Fi Analyser / inSSIDerUse Wi-Fi analyser to scan all channels. Move to least-congested non-overlapping channel (1, 6, or 11). In dense environments, force 20 MHz bandwidth.
2. ESP Connectivity Issues
Serial Monitor / RSSI loggingCheck: correct SSID/password, 2.4 GHz network (ESP8266 doesn’t support 5 GHz), no MAC filter, RSSI > −70 dBm. Add WiFi.setAutoReconnect(true).
3. Deauth Attack Detection
Wireshark / KismetSudden disconnections suggest deauth attack. Capture with Wireshark for deauth frames (reason code 7). Enable 802.11w PMF if supported.