
Connecting your EBYTE E103-W11 WiFi 6+BLE 5.1 Serial to WiFi Module to a network server in TCP client mode involves a few straightforward steps using AT commands. Here's a guide:
Set Station Mode and Save: Configure the module to operate in Station (STA) mode and save the settings to the module's flash memory. Use the following command:
AT+CWMODE=1,"s.y"
Connect to Your WiFi Network: Connect the E103-W11 to your local WiFi network. Replace "Test11" with your network's SSID (name) and "12345678" with your WiFi password. This command also saves the WiFi settings:
AT+CWJAP="Test11","12345678","s.y"
Establish the TCP Connection: Initiate a TCP connection to your network server. Replace "192.168.1.100" with the server's IP address and "1001" with the desired port number on the server:
AT+CIPSTART="TCP","192.168.1.100",1001
Enable Transparent Transmission (Optional): If you require transparent data transmission, activate this mode with:
AT+CIPMODE=1
Send Data (Transparent Mode): If transparent mode is enabled, the module will prompt with a ' > ' symbol, indicating it's ready to transmit data. After the prompt appears, you can send your data to the server:
AT+CIPSEND
By following these steps and using these AT commands, you can successfully configure your EBYTE E103-W11 module for TCP client operation and start communicating with your network server.


