This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* クロック:1 | |
* ラッチ:3 | |
* データ(赤):5 | |
* データ(緑):7 | |
* イネーブル:9 | |
* データ(青):11 | |
*/ | |
// 0,1ピンは使わず、2ピンからはじめる | |
#define SCLK 2 // クロック |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
branches=`git branch | grep -v -e"^\*" | tr -d ' '` | |
PS3="Select branch > " | |
echo 'Branch list:' | |
select var in ${branches} | |
do | |
echo "git checkout ${var}" |