라즈베리파이 핀

Usb to Serial Converter

2핀  (5V)

+5V

6핀  (GND)

GND

8핀  (TXD)

RXD

10핀 (RXD)

TXD

 



예제 소스

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include<stdio.h>
#include<string.h>
#include<errno.h>
 
#include<wiringSerial.h>
 
int main(){
    int fd;
    if((fd=serialOpen("/dev/ttyAMA0",115200))<0){
        fprintf(stderr,"Unable to open serial device: %s\n", strerror(errno));
        return 1;
    }
    for(;;){
        putchar(serialGetchar(fd));
        fflush(stdout);
    }
}
cs

 

출력 결과

입력 받은데로 문자 출력


+ Recent posts