Category: Raspberry Pi

【Raspberry Pi】シリアルの利用注意点(0x0Dが0x0Aに変わる)

UARTを使用したときに、0x0D送信したのに受信側では0x0Aに変わっている時があります。 これは、ttyがターミナルモードになっているためです。 バイナリデータ送信をしたいときは、rawモードの設定が必要です。 以下設定のサンプルです。   fd_sci0 = open(”/dev/ttyAMA0”, O_RDWR | O_NOCTTY| O_NDELAY); // | O_NDELAY|O_NONBLOCK); if (fd_sci0 == -1) { perror(“close error”); return;

Continue reading【Raspberry Pi】シリアルの利用注意点(0x0Dが0x0Aに変わる)

【Raspberry Pi】UVCカメラを使う(WATEC WAT-01U2)

Full-HD USB WEB CAM ( WATEC WAT-01U2 ) をRaspberry Piで使ってみた。  CSマウント(Cマウントアダプタもあり)なのでレンズが変更できうれしい。 写りも明るいしよいです。 購入は秋葉原のトモカ電気さんが販売代理店されていてスムーズにご対応頂けました。 ・インストールするパッケージ ※motionはwebで確認用 sudo apt-get install uvccapture guvcview luvcview apt-get

Continue reading【Raspberry Pi】UVCカメラを使う(WATEC WAT-01U2)

【Raspberry Pi】SDをバックアップする & SDへの書き出し

【OS X】 ・SDカードをMACにさし、SDカードのマウントポイントをチェック #mount すると、/dev/disk1s1とかでマウントされている。   ・丸ごとバックアップする為にunmountする $sudo diskutil unmountDisk /dev/disk2   ・SDカードをバックアップ #sudo dd bs=1m if=/dev/disk2 of=./sf_1110.img   ・SDにイメージを書き出し

Continue reading【Raspberry Pi】SDをバックアップする & SDへの書き出し

【Raspberry Pi + OF】shaderを使う時の注意点

OFでgl/shaderサンプルを動かしたら動かなかった。 下記を追加して動作OKでした。 good luck ,   ・main.cppに追記   #include “ofMain.h” #include “testApp.h” #include “ofGLProgrammableRenderer.h” //======================================================================== int main( ){    

Continue reading【Raspberry Pi + OF】shaderを使う時の注意点

【Raspberry Pi + OF】ofxRPiCameraVideoGrabberを使う。

下記よりaddonをダウンロード https://github.com/jvcleave/ofxRPiCameraVideoGrabber   以下手順。 #cd  /usr/src/openframeworks/apps/myApps/ #git clone https://github.com/jvcleave/ofxRPiCameraVideoGrabber #make #make run   turbo modeで行うとfreezeしてしまった。 midiumでは正常に動作しました。   good luck.    

Continue reading【Raspberry Pi + OF】ofxRPiCameraVideoGrabberを使う。

【Raspberry Pi】時刻を合わせる (ntp)

Rapsberry Piは電源を切る毎に時計がずれてしまいます。 これはRTCにボタン電池などで電源が供給されていない為です。 以下時刻同期するためのntpクライアント設定方法です。   ・/etc/ntp.confに下記を追加します。   # You do need to talk to an NTP server or two (or

Continue reading【Raspberry Pi】時刻を合わせる (ntp)

【Raspberry Pi】openFrameworksのaddonを追加する

Raspberry PiでOFをaddonを追加する。 ここでは例として、ofxTrueTypeFontUCをインストールする。 #cd (YOUR_OF_PATH)/openFrameworks/addon #git clone https://github.com/hironishihara/ofxTrueTypeFontUC.git   ・空のプロジェクトを作成 #cp (YOUR_OF_PATH)/openFrameworks/apps/myApps/emptyExample  (YOUR_OF_PATH)/openFrameworks/apps/myApps/(NEW_APP) #cd (NEW_APP) #vi addons.make ————————————– ofxOpenCv ofxTrueTypeFontUC ————————————–

Continue reading【Raspberry Pi】openFrameworksのaddonを追加する

【Raspberry Pi】GW-450D KATANAを使う

GW-450D KATANAを使えるようにします。 ・ドライバをdownloadする。  MT7610U USBを選択 http://www.mediatek.com/_en/07_downloads/01_windows.php?sn=501   ・ドライバを解凍 #mv mt7610u_wifi_sta_v3000_dpo_20130627.tar.bz2 /usr/src #cd /usr/src #tar xjvf mt7610u_wifi_sta_v3000_dpo_20130627.tar.bz2 #cd mt7610u_wifi_sta_v3000_dpo_20130627   ・commmon/rtusb_dev_id.cに追記 /*

Continue reading【Raspberry Pi】GW-450D KATANAを使う