繼上次買 Raspberry Pi 1, 這次又買了 RP 3.
RP3 最大的好處: (1) 4 核且 1.2GHz, 是 CA53 ARM 64-bit processors; (2) 板上有 WiFi + BT (from Broadcom, too?). 其它和之前的 RP 應差異不大。
Step 1: (MicroSD card)
I bought 32G Kingston microSD card (UHS .. U3) 號稱 80MB/s write and 90M/s read speed. 不過我用 RP3 測試只有 20MB/s, 應該是 PR3 performance limitation.
Download NOOBS zip file, decompress to microSD card. 用此 boot 自動會 install Raspbian OS (derivative of Linux Debian).
Step 2: (installation Raspbian 4.1.18-v7+, based on Debian Jessie version); armv7l 32-bit instruction set!!!
1. 設定 keyboard layout from UK to US.
2. 設定 WiFi AP
3. Update Raspbain to the latest update
$ sudo apt-get update (update apt-get inself)
$ sudo apt-get upgrade (upgrade all packages)
Step 3: (Install 中文顯示和輸入)
請參考葉難的 blog.
先更新一下套件清單。
$ sudo apt-get update
安裝中文字型,文泉驛微米黑、文泉驛正黑、文泉驛點陣宋體。
$ sudo apt-get install ttf-wqy-microhei ttf-wqy-zenhei xfonts-wqy
然後將locale設定成繁體中文。
$ sudo dpkg-reconfigure locales
繁體中文的部份,我選了三個zh_TW BIG5、zh_TW.EUC_TW EUC-TW、zh_TW.UTF-8 UTF-8。
然後要安裝中文輸入法。
$ sudo apt-get install scim scim-tables-zh scim-chewing
其中scim-chewing是注音的輸入法,若是大陸用的拼音輸入法,請安裝scim-pinyin。
重開機後,以Ctrl-Space即可切換輸入法,輸入中文。
Step 3: (Remote Desktop) Raspberry Pi 的 default username: pi passwd: raspberry --> change to aluxxx4
可以用 VNC or microsoft remote desktop. 因為 mac 也可以在 app store download microsoft remote desktop. 因此先 install xrdp.
$ sudo apt-get install xrdp --> mac 端必須 download Microsoft remote desktop. 見 xxx blog.
--> mac 可以直接用 microsoft remote desktop, 不用 download any software!!
不過連 ping 都不 work, 上網卻 ok. $ ping www.google.com --> icml open socket: operation not permitted
--> $ sudo chmod u+s /bin/ping --> ping ok and ssh ok and remote desktop ok!!!
ip addr: 192.168.1.245
Install VNC server 就先 delay.
Install miniconda python (2016/?)
不知何時 install miniconda python.
Install Camera Module (2016/04/16)
主要想做一些 computer vision 有關的應用,從淘寶買了 Element 14 官方版的 camera module (RMB$95 + RMB$20 shipping).
Install camera module 可以參考葉難的 article.
硬體裝好後,軟體的設定及測試如下。
$ sudo apt-get update
$ sudo apt-get upgrade
然後執行raspi-config:
$ sudo raspi-config
進入裡頭的「camera」項目,啟用相機模組,再重開機。
接下來,便能使用一些準備好的程式與指令拍攝靜態照片與錄製動態影片。
以指令raspistill可拍照,如下
$ raspistill -o image.jpg -t 1000
-o指定輸出檔名,-t指定預覽時間(單位為千分之一秒),你會在螢幕上看到預覽畫面。如果你發現相片左右或上下顛倒,可加入參數-hf(horizontal flip)與-vf(vertical flip)調整。
這是我的手與我房間的天花板牆壁。
另外可利用指令raspivid進行錄影,如下:
$ raspivid -o video.h264 -t 20000
-o指定輸出檔名,為H.264格式,-t指定錄製時間(單位為千分之一秒)。
可以用 omxplayer video.h264 來顯示 video.
omxplayer 會利用 BRCM SoC 內的 BRCM GPU to play H.264 影片。
如果用 VLC player, 軟解無法正確顯示 video!!!
可利用ffmpeg轉成其他格式,例如:
$ ffmpeg -r 30 -i video.h264 -vcodec copy outputfile.mkv
或是
$ avconv -r 30 -i video.h264 outputfile.avi
Install Bluetooth (2016/04/16)
Follow the article in element 14.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo dpi-update ---> update the firmware
>> then reboot
sudo apt-get install pi-bluetooth >> show it's already installed in the new firmware
sudo apt-get install blueman
>> then reboot and the bluetooth icon shows
>> then reboot and the bluetooth icon disappear!!
Install Camera Software Codec and OpenCV
$ sudo apt-get install -y picamera
$ sudo apt-get install -y vlc
$ sudo apt-get install -y gpac mplayer
$ sudo apt-get install -y mencoder (# obsolete!!)
$ sudo apt-get install -y python-opencv
沒有留言:
張貼留言