the file tcp_client.c was created from the TCP_Client example provided by Espressif for the ESP32. the main code tries to implement an ADC running multiple times and sending the measurements using Sockets, client in this case. Many parts of this program is created from examples provided by espressif this is not a Finished code so it should not be used yet. This file hasn't been updated Yet so not all of the functions used in the main code are listed here.
This repository is made for Personal Testing
The next part of this file is the TCP_Cient README.MD file.
(See the README.md file in the upper level 'examples' directory for more information about examples.)
The application creates a TCP socket and tries to connect to the server with predefined IP address and port number. When a connection is successfully established, the application sends message and waits for the answer. After the server's reply, application prints received reply as ASCII text, waits for 2 seconds and sends another message.
In order to create TCP server that communicates with TCP Client example, choose one of the following options.
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
One command line tool is netcat which can send and receive many kinds of packets.
Note: please replace 192.168.0.167 3333
with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following command.
In addition to those tools, simple Python scripts can be found under sockets/scripts directory. Every script is designed to interact with one of the examples.
nc -l 192.168.0.167 3333
Script example_test.py could be used as a counter part to the tcp-client project, ip protocol name (IPv4 or IPv6) shall be stated as argument. Example:
python example_test.py IPv4
Note that this script is used in automated tests, as well, so the IDF test framework packages need to be imported;
please add $IDF_PATH/tools/ci/python_packages
to PYTHONPATH
.
This example can be run on any commonly available ESP32 development board.
idf.py menuconfig
Set following parameters under Example Configuration Options:
-
Set
IP version
of example to be IPV4 or IPV6. -
Set
IPV4 Address
in case your chose IP version IPV4 above. -
Set
IPV6 Address
in case your chose IP version IPV6 above. -
Set
Port
number that represents remote port the example will connect to.
Configure Wi-Fi or Ethernet under "Example Connection Configuration" menu. See "Establishing Wi-Fi or Ethernet Connection" section in examples/protocols/README.md for more details.
Build the project and flash it to the board, then run monitor tool to view serial output:
idf.py -p PORT flash monitor
(To exit the serial monitor, type Ctrl-]
.)
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
Start server first, to receive data sent from the client (application).