Created
March 20, 2025 14:42
-
-
Save esmarr58/30aa859912c52ffc957773f447507649 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void MainWindow::loop(){ | |
| //Verificar si el websocket esta abierto | |
| if(m_connected == false){ | |
| m_webSocket->open(QUrl("ws://192.168.0.105/ws")); // Reemplaza <ESP32_IP> con la IP de tu ESP32 | |
| m_connected = true; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment