라즈베리파이 핀 | 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 |
출력 결과
입력 받은데로 문자 출력
'프로그래밍 > 라즈베리파이' 카테고리의 다른 글
(라즈베리파이) VNC Viewer를 이용한 원격 GUI (0) | 2016.07.10 |
---|---|
(라즈베리파이)wiringPi 설치 및 정보 (0) | 2016.07.10 |
(라즈베리파이 3) gpio를 이용한 Serial 통신 (2) (0) | 2016.07.10 |
(라즈베리파이 3) gpio를 이용한 Serial 통신(1) (0) | 2016.07.10 |
(라즈베리파이) GPIO 핀 확인하기 (0) | 2016.07.10 |