[유니티 시리얼통신] RS232 시리얼 통신
2020. 3. 11.
1. Api Compatibility Level 설정 ① Edit > Project Settings... 클릭 ② Player > Other Settings > Api Compatibility Level 에서 .NET 4.x 선택 2. 소스 using UnityEngine; using System; using System.IO.Ports; public class DemoSerialCommuncation : MonoBehaviour { SerialPort m_SerialPort = new SerialPort("COM3", 9600, Parity.None, 8, StopBits.One); string m_Data = null; void Start() { m_SerialPort.Open(); } private..