Lora
https://blog.soracom.jp/blog/2017/03/13/bootcamp-lorawan/
https://blog.soracom.jp/blog/2017/03/13/bootcamp-lorawan/
xcode-select –install pyenv install 2.7.11 pyenv global 2.7.11
グラボには、#20 PINが結線していないケーブルをつなぐ事。 20PINは3.3V供給。 斜めになってるとこのピン シャットダウン後に電源ボタン押しても起動しなかったのはこいつが原因だった。。 —–以下転載——- https://blog.tsukumo.co.jp/fukuoka/2016/02/supportblog1602_02.html 4Kモニターのような高解像度モニターや、ゲーミングモニターのような高リフレッシュレートのモニターの性能を完全に発揮させるためには、DisplayPortでの接続が推奨されています。 モニターにDisplayPortケーブルが付属している場合は特に問題は無いのですが、DisplayPortケーブルをモニターとは別に用意しなければならない場合には、 ケーブルの規格(1.1、1.2など)以外にも注意すべき点があります。 それはDisplayPortケーブルの20番ピンが結線されている電源供給対応のケーブルかどうかという点です。 このピンは切替器にモニター側から3.3Vの電源を供給するための配線となっており 、通常のモニターとグラフィックボードを接続する場合には必要のない結線になります。 一部のモニターとグラフィックボード・マザーボードの組み合わせでは、20番ピンの結線された全結線の電源供給対応のDisplayPortケーブルを使用すると、 画面表示に乱れやノイズが生じたり、スリープへの移行や復帰に失敗するといった不具合が発生する事があります。 20番ピンの結線の有無は見た目では判断が付かない場合が多いため、
SLEEP import time time.sleep(0.5)
黒いウインドウがかぶってしまう場合の対処策 int main( ){ ofSetupOpenGL(2560,1600, OF_GAME_MODE); // <——– setup the GL context // this kicks off the running of my
swiftData https://github.com/ryanfowler/SwiftData Xcode7 Build Phase > Link Binary With Library > + button > Add Other > CMD+ SHIFT+
import sys sys.path.append(‘/path/to/dir’) .bashrc に追記 export PYTHONPATH=/path/to/dir:$PYTHONPATH
クローン git clone http://xxx.co.jp… branch一覧表示 git branch -a branch 切り替え git checkout (branch) merge git merge (branch)
Activity FragmentManager fragmentManager = getFragmentManager(); FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction(); LoginFragment login_fragment = new LoginFragment();
【/boot/config.txt】 hdmi_force_hotplug=1 Use HDMI mode even if no HDMI monitor is detected hdmi_drive=2 参照: http://elinux.org/RPiconfig
brew install bzr bzr branch lp:nfcpy brew install libusb brew install libusb-compat sudo pip install –pre pyusb cd nfcpy python
http://www.elecrow.com/
ここでJARをdownloadか、ビルド方法に従いビルド。 https://github.com/zxing/zxing/wiki/Getting-Started-Developing ソースはzxingのdownloadする、 https://code.google.com/p/zxing/downloads/list
カメラプレビュー void ofApp::setupCameraPreview() { AVCaptureSession *session = [AVCaptureSession new]; [session setSessionPreset:AVCaptureSessionPreset1280x720]; AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo]; AVCaptureDeviceInput *deviceInput = [AVCaptureDeviceInput
user 追加 sudo adduser mknod
https://www.dronecode.org/ やっぱpixhawk買ってみるか
def function begin ・・・ rescue => ex ・・・ end end
n:mのmodel定義 has_many through:を使う モデル定義 rails g model User name:string rails g model Project name:string rails g model UserProjectGroup user_id:integer project_id:integer rake
真偽メソッド メソッド末尾に?をつける。 finished? 破壊的メソッド(結果を自分に入れ替えていく) 末尾に!をつける。
JSON出力について。 jbuilderを使う。 ルーティング(config/routes.rb) get ‘show’ => ‘sessions#show’ コントローラー(app/controllers/sessions_controller.rb) class SessionsController < ApplicationController protect_from_forgery with: :null_session def show @status