OVMS3-idf/examples/protocols/asio/chat_server
He Yin Ling 6e05a79536 test: update example and unit tests with new import roles:
tiny_test_fw is a python package now. import it using normal way.
2019-12-11 15:57:49 +11:00
..
main examples: use new component registration api 2019-06-21 19:53:29 +08:00
asio_chat_server_test.py test: update example and unit tests with new import roles: 2019-12-11 15:57:49 +11:00
CMakeLists.txt examples/protocols/asio: use common network component 2019-04-15 03:32:05 +00:00
Makefile examples/protocols/asio: use common network component 2019-04-15 03:32:05 +00:00
README.md build system: Use CMake-based build system as default when describing commands 2019-07-08 17:31:27 +10:00
sdkconfig.defaults Rename Kconfig options (components/esp32) 2019-05-21 09:09:01 +02:00

Asio chat server example

Simple Asio chat server using WiFi STA or Ethernet.

Example workflow

  • Wi-Fi or Ethernet connection is established, and IP address is obtained.
  • Asio chat server is started on port number defined through the project configuration.
  • Chat server echoes a message (received from any client) to all connected clients.

Running the example

  • Open project configuration menu (idf.py menuconfig) to configure Wi-Fi or Ethernet. See "Establishing Wi-Fi or Ethernet Connection" section in examples/protocols/README.md for more details.
  • Set server port number in menuconfig, "Example configuration".
  • Run idf.py -p PORT flash monitor to build and upload the example to your board and connect to it's serial terminal.
  • Wait for the board to connect to WiFi or Ethernet (note the IP address).
  • Connect to the server using multiple clients, for example using any option below.
    • build and run asi chat client on your host machine
    • run chat_client asio example on ESP platform
    • since chat message consist of ascii size and message, it is possible to netcat nc IP PORT and type for example 4ABC<CR> to transmit 'ABC\n'

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