In IoT device development, the serial port WiFi module acts as a crucial "bridge" for connecting devices to networks. However, beginners often encounter conceptual questions. This article addresses eight fundamental questions to help you understand them at a glance.
1. What is a Serial Port WiFi Module ?
Simply put, it functions as a "converter" . Its core task is to convert serial port signals (UART) from a microcontroller (MCU) into wireless WiFi signals, often called a UART to WiFi module.

2. What are its Operating Modes?
Transparent Transmission Mode: The module acts as a transparent pipe, encapsulating and transmitting serial data via WiFi without processing.
Command Mode: The module is configured using AT commands (e.g., "AT+...").
3. How Does it Work?
It creates a two-way channel: MCU ↔ Serial port ↔ Module WiFi transmission ↔ Network target, functioning purely as a transparent transmission channel.
4. What are its Network Modes?
STA Mode (Station): Acts as a client, connecting to an existing AP hotspot like a router.
AP Mode (Access Point): Acts as a wireless access point, broadcasting its own WiFi for devices to connect directly.
5. How to Switch Between Modes?
6. Can it Achieve Remote Control?
Yes, with a prerequisite: a public server acting as a relay, since the module obtains a local intranet IP not directly accessible from the public internet.
7. What is the Difference Between TCP and UDP?
TCP: Reliable, connection-oriented. Ensures data integrity (e.g., file transfers, commands).
UDP: Unreliable, connectionless. Low overhead, fast (e.g., video streaming, network discovery).
8. What is Needed to Control an MCU with a Smartphone?
Four components: 1) MCU, 2) Serial port WiFi module, 3) Smartphone APP, 4) MCU peripheral circuits.