skyf의 게임 개발기

[참고자료] C# 시리얼 포트 관련 본문

Unity/Unity 참고자료

[참고자료] C# 시리얼 포트 관련

skyf7604 2021. 6. 17. 17:36

https://www.csharpstudy.com/Practical/Prac-serialport.aspx

 

시리얼포트 기초 - C# 프로그래밍 배우기 (Learn C# Programming)

시리얼 포트 기초 시리얼 포트 (Serial Port, 직렬 포트)는 한 번에 하나의 비트 단위로 정보를 주고 받을 수 있는 직렬 통신의 물리적 인터페이스로서 다양한 주변 기기와의 통신에 사용한다. 시리

www.csharpstudy.com

https://unininu.tistory.com/304

 

C# 시리얼통신을 뚫어보자(송신/수신, SerialPort, ReceiveData, Invoke)

C# 시리얼통신을 뚫어보자(송신/수신, SerialPort, ReceiveData, Invoke) PC와 외부 장치를 연결하기 위해 GUI를 만드는 중에 시리얼통신 수신 부분이 막혀서 인터넷을 검색하고 검색하여 이해한 내용을 정

unininu.tistory.com

https://docs.microsoft.com/ko-kr/dotnet/api/system.io.ports.serialport?view=dotnet-plat-ext-5.0 

 

SerialPort 클래스 (System.IO.Ports)

직렬 포트 리소스를 나타냅니다.Represents a serial port resource.

docs.microsoft.com

https://sosopro.tistory.com/12

 

[C#] 시리얼통신(RS232) 방법

C#으로 시리얼통신하는 방법에 대해 알아보겠습니다. SerialPort 클래스를 이용해서 시리얼 포트 통신하는법을 살펴보겠습니다. SerialPort클래스를 사용하기 위해선는 System.IO.Ports 네임스페이스를

sosopro.tistory.com

https://samsons.tistory.com/2

 

시리얼 직렬 통신

using System; using System.Collections.Generic; using System.Diagnostics; using System.IO.Ports; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace..

samsons.tistory.com