Answer
Oct 16, 2025 - 10:07 AM
To connect the EBYTE E103-W11 WiFi 6+BLE 5.1 Serial to WiFi Module to a network server using TCP client mode, follow these steps based on the provided user manual:
1. Switch the module mode to STA (Station) and save it to FLASH:
```
AT+CWMODE=1,"s.y"
```
2. Connect the module to the WiFi network with the specified SSID and password:
```
AT+CWJAP="Test11","12345678","s.y"
```
3. Establish a TCP connection with the network server at the specified IP address and port:
```
AT+CIPSTART="TCP","192.168.1.100",1001
```
4. If transparent transmission is required, switch to transparent transmission mode:
```
AT+CIPMODE=1
```
5. Send data over the established TCP connection:
```
AT+CIPSEND
```
6. After the module sends the '>' symbol, transparent transmission is enabled, and you can start sending data to the network server.
By following these steps and using the appropriate AT commands, you should be able to successfully connect the E103-W11 module to a network server in TCP client mode for data communication.
User Manual Q&A

Add New Comment