【RPi 】openframeworks 認証エラー
wget –no-check-certificate https://openframeworks.cc/versions/v0.9.8/of_v0.9.8_linuxarmv6l_release.tar.gz
【RPi】under voltage detected
add config.txt avoid_warnings=1 disables the warning overlays. avoid_warnings=2disables the warning overlays, but additionally allows turbo mode even when low-voltage is present.
【Rapsberry Pi】git 自動更新
/var/www/(project)/.git/configを変更 [remote “origin”] url = https://username:password@bitbucket.org/u26/xxxxxxxx.git
Raspberry PI CM3
flash eMMC https://www.raspberrypi.org/documentation/hardware/computemodule/cm-emmc-flashing.md ・windows Installerをinstall https://www.raspberrypi.org/documentation/hardware/computemodule/CM-Boot-Installer.exe ・usb slaveにWindows PCをつなぐ ・power inにつなぐ ・RpiBoot.exeを実行するとmass storage認識する。 Install OS RASPBIAN JESSIE LITE Minimal
【RPi】Custom Splash Screen
【no boot log】 add quiet to /boot/cmdline.txt e.g. sudo vi /boot/cmdline.txt dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet
FAN
秋月の5V FAN 消費電流: 0.06A
【RPi】 GPIO
パッケージの確認 $ sudo apt-cache –names-only search gpio 【io.py】 #!/usr/bin/python import RPi.GPIO as GPIO import time #GPIO.setmode(GPIO.BCM) # use GPIO
【RPi】oF compile
【RPi as armv6】 http://openframeworks.cc/setup/raspberrypi/Raspberry-Pi-Getting-Started.html 【RPi2 as armv7】 http://forum.openframeworks.cc/t/raspberry-pi-2-setup-guide/18690
【raspberry】nfcpy 1.0.1
raspberry piでpynfcを使う。 pythonは2.7 nfcpy https://nfcpy.readthedocs.io/en/latest/topics/get-started.html# 1.0.1からnfcからndefが分離している。 ndef https://ndeflib.readthedocs.io/en/latest/records/text.html sudo apt install python-pippip install libusb1pip install pyserialpip
【RPi】raspistill
ev設定は 25〜-25と記述あるが、15,-15が現状有効? http://elinux.org/Rpi_Camera_Module raspistill -n -ev -10 -o ev-10.jpg
【RPi】UART speed up
init_uart_baud initial UART baud rate. Default 115200 init_uart_clock initial UART clock. Default 3000000 (3 MHz) ・/boot/cmdline.txtを編集(削除) #dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2
【RPi】Wifi設定
$ vi /etc/network/interfaces auto lo iface lo inet loopback iface eth0 inet dhcp allow-hotplug wlan0 iface wlan0 inet dhcp wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
【RPi】SD Backup/書き込み
・マウントポイントの確認 sudo diskutil list ・SDカードへの書き込み sudo diskutil unmount /dev/disk2s1 sudo dd bs=1m if=2015-02-16-raspbian-wheezy.img of=/dev/rdisk2 ・SDカードのバックアップ sudo diskutil unmount
【RPi】ルートファイルシステムを拡張する(+2GB)
raspi-configでI2C等を有効にしていくと、空き容量が足りなくなってくるので容量を拡張する。 $ sudo fdisk /dev/mmcblk0 Command (m for help): p Disk /dev/mmcblk0: 7969 MB, 7969177600 bytes 4 heads, 16 sectors/track,
【RPi】SDカードの空きエリアを/mntにマウントする
【pc】 sudo diskutil list sudo diskutil unmount /dev/disk2s1 sudo dd bs=1m if=2015-02-16-raspbian-wheezy.img of=/dev/rdisk2 【rpi】 ※raspi-configで、expand root file systemはしない。すると、ルートファイルシステムがサイズ拡張されてSDの全エリア使ってしまうので。 $sudo
【RPi】fsprotect
fsprotect sudo apt-get update sudo apt-get upgrade sudo apt-get -y install libncurses5-dev libxml2-dev subversion libssl-dev libspandsp-dev libsqlite3-dev sqlite3 libgtk2.0-dev libslang2-dev
NFC
brew install bzr bzr branch lp:nfcpy brew install libusb brew install libusb-compat sudo pip install –pre pyusb cd nfcpy python
Raspberry Pi + HDR
sudo apt-get install enfuse raspistill -n -t 3000 -ev 25 -o img1.jpg raspistill -n -t 3000 -ev -25 -o img2.jpg