lws-esp32-test-server-demos icon indicating copy to clipboard operation
lws-esp32-test-server-demos copied to clipboard

Libwebsockets test demos running on ESP32 OTA APP

Results 3 lws-esp32-test-server-demos issues
Sort by recently updated
recently updated
newest added

hi, i want to use the test server as AP instead of station. I changed to line in main.c lws_esp32_wlan_start_station() to lws_esp32_wlan_start_ap() 1- only one client can connect. Is this...

Hi, I been able to connect to the factory server, however after loading the test-server I'm unable to connect to it? What ip do I use, I'm currently using the...

I want to reconnect to a socket if it is closed. [So I add a connect flag to LWS_CALLBACK_CLOSED](https://github.com/physiii/smart-regulator/blob/master/code/main/plugins/protocol_token.c#L273) ``` case LWS_CALLBACK_CLOSED: //vTaskDelay(1000/portTICK_PERIOD_MS); printf("re-connecting with token protocol\n"); token_connect = true;...