コメントの書き方を変更
This commit is contained in:
parent
22207c5064
commit
8dbdddaaea
1 changed files with 8 additions and 9 deletions
|
@ -238,16 +238,15 @@ void setup() {
|
|||
}
|
||||
|
||||
void loop(){
|
||||
//センサーを見る
|
||||
/* センサーを見る */
|
||||
byte sensor = 0;
|
||||
#ifdef LINE_BLACK //黒ライン
|
||||
sensor = sensorRead();
|
||||
#else
|
||||
sensor = ~sensorRead();
|
||||
#endif
|
||||
//ロータリーエンコーダーの変化を見る
|
||||
count();
|
||||
//全体の動作を決定する
|
||||
count(); //ロータリーエンコーダーの変化を見る
|
||||
/* 全体の動作を決定する */
|
||||
switch(mode){
|
||||
case MODE_TARGET_RIGHT_VERTICAL: //右垂直標的
|
||||
lance(LANCE_ANGLE4);
|
||||
|
@ -294,7 +293,7 @@ void loop(){
|
|||
motorR.mode(STOP);
|
||||
break;
|
||||
}
|
||||
//平行標的を狙う時は、ランスをぷるぷるする
|
||||
/* 平行標的を狙う時は、ランスをぷるぷるする */
|
||||
static unsigned long millis_lance = 0;
|
||||
if(millis() - millis_lance > LANCE_INTERVAL){
|
||||
millis_lance = millis();
|
||||
|
|
Loading…
Add table
Reference in a new issue