1
0
mirror of synced 2024-11-30 17:04:29 +01:00

Only read if SerialPorts are open

This commit is contained in:
Kylemc1413 2022-05-22 09:34:23 -04:00
parent 3cb2990ef0
commit f8098433c9

View File

@ -50,7 +50,9 @@ public class Serial : MonoBehaviour
// Update is called once per frame // Update is called once per frame
void Update() void Update()
{ {
if(ComL.IsOpen)
ReadHead(ComL, 0); ReadHead(ComL, 0);
if (ComR.IsOpen)
ReadHead(ComR, 1); ReadHead(ComR, 1);
//SendTouch(ComL, TouchPackL); //SendTouch(ComL, TouchPackL);
//SendTouch(ComR, TouchPackR); //SendTouch(ComR, TouchPackR);