Roland Dobai 37126d3451 Correct Kconfigs according to the coding style пре 7 година
..
components d9939cedd9 cmake: make main a component again пре 7 година
main 37126d3451 Correct Kconfigs according to the coding style пре 7 година
CMakeLists.txt d9939cedd9 cmake: make main a component again пре 7 година
Makefile 9784df1c3a asio: examples renamed to have consistent binary names when build in make and CMake пре 7 година
README.md 1ef13c524c asio: initial idf port of asio library without ssl пре 7 година
asio_chat_client_test.py 57c54f96f1 examples: Fix Python coding style пре 7 година
sdkconfig.defaults 1ef13c524c asio: initial idf port of asio library without ssl пре 7 година

README.md

ASIO chat server example

Simple asio chat client using WiFi STA

Example workflow

  • WiFi STA is started and trying to connect to the access point defined through make menuconfig
  • Once connected and acquired IP address ASIO chat client connects to a corresponding server whose port number and ip are defined through make menuconfig
  • Chat client receives all messages from other chat clients, also it sends message received from stdin using make monitor

Running the example

  • Run make menuconfig to configure the access point's SSID and Password and server ip address and port number
  • Start chat server either on host machine or as another ESP device running chat_server example
  • Run make flash monitor to build and upload the example to your board and connect to it's serial terminal
  • Wait for WiFi to connect to your access point
  • Receive and send messages to/from other clients on stdin/stdout via serial terminal.

See the README.md file in the upper level 'examples' directory for more information about examples.