Raspberry Pi, OpenVG, example 실행화면 Raspberry Pi, OpenVG, example 실행화면입니다. 1. clip 2. hellovg다양한 언어를 지원한다는 것을 보여줍니다. 3. mouse-hellovgmouse를 연결하여 아무 곳이나 클릭을 하면 hello 위의 점처럼 찍히게 됩니다. 4. particles그림과 같이 다양한 색감의 원이 스크린세이버처럼 사방으로 돌아다닙니다. 5. shapedemoOpenVG를 통해 다양한 도형을 그릴 수 있다는 것을 보여줍니다. Raspberry Pi 3 2018.08.01
Raspiberry Pi, OpenVG 설치하기 Raspiberry Pi, OpenVG 설치하는 방법입니다. https://github.com/ajstarks/openvg 1. sudo apt-get install libjpeg8-dev indent libfreetype6-dev ttf-dejavu-core 2. git clone git://github.com/ajstarks/openvg 3. openvg 설치하기pi@raspberrypi ~ $ cd openvg pi@raspberrypi ~/openvg $ make pi@raspberrypi ~/openvg $ make library pi@raspberrypi ~/openvg $ sudo make install 4. example 빌드하기pi@raspberrypi ~/openvg $ cd clien.. Raspberry Pi 3 2018.08.01
Raspberry Pi, WiringPi 라이브러리 설치 Raspberry Pi, WiringPi 라이브러리 설치에 대한 부분입니다. http://wiringpi.com/reference/raspberry-pi-specifics/ https://github.com/WiringPi/WiringPi 1. git clone git://git.drogon.net/wiringPi 2. cd wiringPi 3. git pull origin 4. ./build pi@raspberrypi:~/wiringPi$ ./build wiringPi Build script ===================== WiringPi Library [UnInstall] [Compile] wiringPi.c [Compile] wiringSerial.c [Compile] wiringShift... Raspberry Pi 3 2018.08.01
Raspberry Pi 3 B+ 핀 구성 [ pinout ] Raspberry Pi 3 B+ 핀 구성에 대한 부분입니다. 기본 명령어인 pinout 으로 핀 구성을 확인할 수 있습니다. https://wikidocs.net/3172 https://pinout.xyz/# https://pinout.xyz/pinout/wiringpi_gpio_pinout 1. pinout 2. https://pinout.xyz/# 3. https://pinout.xyz/pinout/wiringpi_gpio_pinout Raspberry Pi 3 2018.08.01
Raspberry Pi, Camera Module 기본 사용법 [ raspistill ] Raspberry Pi, Camera Module 기본 사용법에 대한 부분입니다. 라즈베리 파이 기본 명령어인 raspistill 을 사용합니다. 1. Pi Camera 2. sudo raspi-config 3. Interfacing Options 4. P1 Camera 5. 6. 7. 8. 9. raspistill -v -o raspistill.jpg 10. Pi Camera 화면 11. Pi Camera Capture 화면 Raspberry Pi 3 2018.08.01
Raspberry Pi, Removable medium is inserted 팝업 비활성화 Raspberry Pi, Removable medium is inserted 팝업 비활성화 방법입니다. USB 메모리를 라즈베리 파이에 연결하면 다음과 같이 팝업이 뜨는데이 팝업을 비활성화하고자 할 때 사용하는 방법입니다. 1. 2. 파일 탐색기 > Preferences 3. Volume ManagementShow available options for removable media when they are inserted 체크박스를 해제합니다. Raspberry Pi 3 2018.08.01
Raspberry Pi, 스크린샷 [ scrot ] Raspberry Pi, 스크린샷을 찍는 방법입니다. 기본 파일명은 YYYY-MM-DD-HHMMSS_WIDTHxHEIGHT_scot.png 입니다. HDMI는 그냥 사용하면 되고LCD 디스플레이를 사용하는 경우 DISPLAY=:0 가 추가되어야 합니다. scot [options] [file] scot [ 현재 화면을 스크린샷 ] scot -s [ 사용자가 특정 창을 클릭하면 해당 창을 스크린샷 ]scot 'sample.png' [ 현재 화면을 sample.png 이름으로 스크린샷 ] scot -d 5 [ 현재 화면을 5초 뒤에 스크린샷 ] scot -c -d 5 [ 터미널에 카운트를 보여주면서 현재 화면을 5초 뒤에 스크린샷 ] scrot -e 'mv $f ~/capture/' [ 현재 화면을 스크린샷하.. Raspberry Pi 3 2018.08.01
Raspberry Pi, 시간 동기화 Raspberry Pi, 시간 동기화 방법입니다. 1. sudo dpkg-reconfigure tzdata 2. Asia 3. Seoul 4. sudo apt-get install rdate 5. sudo /usr/bin/rdate -s time.bora.net현재 시간 동기화 6. sudo nano /etc/rc.local부팅 시 자동으로 현재 시간을 설정하기 위해서 아래 스크립트를 추가합니다. rdate -s time.bora.net date Raspberry Pi 3 2018.08.01
Raspberry Pi, X윈도우 스크린세이버 끄기 Raspberry Pi, X윈도우 스크린세이버 끄기에 대한 부분입니다. 1. Preference > Screensaver 2. Display Modes > Disable Screen Saver Raspberry Pi 3 2018.08.01
Raspberry Pi, Samba 설치 Raspberry Pi, Samba 설치 방법입니다. 1. sudo apt-get install samba samba-common-bin 2. sudo smbpasswd -a pi 3. sudo nano /etc/samba/smb.conf [pi] comment = rpi samba server by pi path = /home/pi valid user = pi writable = yes read only = no browseable = yes ---------------------------- 4. sudo /etc/init.d/samba restart Raspberry Pi 3 2018.08.01