OVMS3-idf/examples/protocols/asio/chat_client
2018-08-29 20:22:55 +08:00
..
components cmake: Add missing example CMakeLists.txt files, CI check all examples have both 2018-08-29 20:22:55 +08:00
main asio: initial idf port of asio library without ssl 2018-07-30 06:28:43 +00:00
asio_chat_client_test.py asio: added socket timeout for example tests 2018-08-06 22:05:15 +02:00
CMakeLists.txt cmake: Add missing example CMakeLists.txt files, CI check all examples have both 2018-08-29 20:22:55 +08:00
Makefile asio: initial idf port of asio library without ssl 2018-07-30 06:28:43 +00:00
README.md asio: initial idf port of asio library without ssl 2018-07-30 06:28:43 +00:00
sdkconfig.defaults asio: initial idf port of asio library without ssl 2018-07-30 06:28:43 +00:00

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.