Hi everyone !
I’ve got an issue with my server web socket. An abstract scheme of the socket is: Socket: {
Loop(); // Data acquisition TableUpdate(); // with new data if(userRequest == true)
SendTable(); // sends the table to the web browser
}
The point is that, if the user doesn’t send a request for 4-5 seconds Loop() is not run. I need Loop to be executed also if there’s no user request for the socket. It seems that the socket is in stand-by, waiting for a new request. If you want I can write the code. Thank you for your help.