일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Unity
- length
- sensor
- SERIAL
- flutter
- APP
- memory
- atmega328
- parameter
- UNO
- public
- preprocessing
- java
- wpf
- Barcode
- file access
- 3D
- Encapusulation
- aduino
- Class
- Android
- c++
- Pointer
- inheritance
- mfc
- compare
- digitalRead
- stream
- Contour
- Read
Archives
- Today
- Total
목록serialport (1)
폴크(FOLC)

# 통신 채널이나 컴퓨터 버스를 거쳐 하나의 비트 단위로 연속적으로 데이터를 전송하는 과정 > 시간으로 나누어 차례대로 전송 > 전송 방식은 동기/비동기 방식으로 나뉜다. - 동기 방식 : 데이터 신호와는 별도로 동기신호를 보낸다. - 비동기 방식 : 데이터 신호만 보내고 각각의 방식에 따라 데이터 비트를 찾는다. # 소스 코드 using System; using System.IO.Ports; SerialPort m_port = new SerialPort(); string m_strQueueMessage; public bool OpenPort(string port, int baud = 9600) { m_port.PortName = port; // default : COM1 m_port.BaudRate =..
C#, WF, WPF(.NET)/C#, WF, WPF(.NET) 테크닉
2021. 12. 10. 10:10