目的
測試telegram在rpi CLI的模式下運作機制
安裝步驟
Perry Wu 發表在 痞客邦 留言(0) 人氣(319)
目的
在手機配對RPI2的BlueZ時,一直失敗,找了資料發現要改/usr/bin/bluez-simple-agent的capability 才可以配對?所以針對這個參數來了解BlueZ以及BlueTooth的相互關係
BlueTooth的SSP定義了安全配對的方法
Perry Wu 發表在 痞客邦 留言(0) 人氣(848)
目的
在使用者第一次設備,有很大機會不知道該設備的網路ip是多少,這時候語音說出來就是一個選項了,
之前開發了google TTS,但是要連到Internet才可使用,不是很完美的方式。
參考http://elinux.org/RPi_Text_to_Speech_(Speech_Synthesis)
Perry Wu 發表在 痞客邦 留言(0) 人氣(180)
* 很多的應用
https://learn.adafruit.com/category/raspberry-pi
* 介紹USB AUDIO卡的安裝以及raspberry中alsa的設定方式
https://learn.adafruit.com/usb-audio-cards-with-a-raspberry-pi/instructions
* 介紹如何使用mpc/mpd來讓raspberry當音響盒的
https://learn.adafruit.com/raspberry-pi-radio-player-with-touchscreen/installing-the-music-player-daemon
* NAS
http://www.openmediavault.org/
Perry Wu 發表在 痞客邦 留言(0) 人氣(170)
安裝套件
sudo apt-get install pulseaudio pulseaudio-utils
sudo apt-get install mplayer
sudo apt-get install libmpg123-dev mpg123
Perry Wu 發表在 痞客邦 留言(0) 人氣(299)
usbmount
讓USB flash插入直接mount
sudo apt-get install usbmount
samba
提供檔案共用
sudo apt-get install samba
mkdir /home/pi/share
chmod 777 /home/pi/share
sudo vi /etc/samba/smb.conf
[Share]
comment = ShareFolder
path = /home/pi/share
browseable = Yes
writable = Yes
public = Yes
guest ok = yes
read only = no
node.js
wget http://node-arm.herokuapp.com/node_latest_armhf.deb
sudo dpkg -i node_latest_armhf.deb
Perry Wu 發表在 痞客邦 留言(0) 人氣(127)