Abdul Mukheem Shaik 5c387c5f99 Rotation references issue working single user
Co-Authored-By: ZeinabBF <145973209+ZeinabBF@users.noreply.github.com>
2024-05-28 02:39:59 +02:00

70 lines
1.8 KiB
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.IO.Ports;
using System;
using WebSocketSharp;
public class WebSocketController : MonoBehaviour
{
String esp32IPAddress = "10.204.0.244";
String esp32WebsocketPort = "81";
// Websocket Service
public WebSocket ws;
// Serial Port to which Arduino is connected
SerialPort arduinoPort = new SerialPort("COM4", 9600);
public String voltageValue = "0.0f";
public void Start(){
//ConnectWithESP32();
//narrationController.GetComponent<NarrationController>();
}
// Update is called once per frame
void Update()
{
}
// Method to connect ESP32
public void ConnectWithESP32()
{
Debug.Log("Connecting Unity with ESP32 via Websockets...");
ws = new WebSocket("ws://" + esp32IPAddress + ":" + esp32WebsocketPort);
ws.OnOpen += (sender, e) =>
{
Debug.Log("WebSocket connected");
ws.Send("Hello from Unity!");
//ws.Send("Need input");
};
ws.OnMessage += (sender, e) =>
{
//Debug.Log("Received message: " + e.Data);
//Debug.Log();
voltageValue = e.Data.Split(':')[1].ToString();
// Debug.Log(voltageValue);
//Voltage:180.0
if (e.Data.Equals("Start Narration", StringComparison.OrdinalIgnoreCase)){
// narrationControllerScript.startNarration = true;
}
};
ws.Connect();
Debug.Log("Websocket state - " + ws.ReadyState);
}
//Closing websocket upon application quit
void OnApplicationQuit()
{
ws.Close();
Debug.Log("WebSocket closed on application exit");
}
}