esp_websocket_client: Add websocket client component

Closes https://github.com/espressif/esp-idf/issues/2829


* Original commit: espressif/esp-idf@2a2d932cfe
This commit is contained in:
Tuan
2019-06-20 15:37:40 +08:00
committed by gabsuren
parent 325a1933c4
commit f3a0586663
13 changed files with 1053 additions and 0 deletions

View File

@ -0,0 +1,9 @@
menu "Example Configuration"
config WEBSOCKET_URI
string "Websocket endpoint URI"
default "ws://echo.websocket.org";
help
URL of websocket endpoint this example connects to and sends echo
endmenu