etrobocon2018 feat.KatLab  770af34cce41ae9c30c41303275e1add2daae0c3 (with uncommitted changes)
 全て クラス 名前空間 ファイル 関数 変数 列挙型 列挙値 フレンド マクロ定義 ページ
NormalCourse.h
[詳解]
1 #ifndef __NORMALCOURSE__
2 #define __NORMALCOURSE__
3 
4 #include "LineTracerWalker.h"
5 #include "MotorAngle.h"
6 #include "Walker.h"
7 
8 class NormalCourse {
9  public:
11  void stop();
12  void runOrStop(Walker& walker);
14 
15  protected:
17  int8_t forward;
18  int8_t turn;
19 };
20 
21 #endif
int8_t forward
Definition: NormalCourse.h:17
void runOrStop(Walker &walker)
Definition: NormalCourse.cpp:8
LineTracerWalker lineTracerWalker
Definition: NormalCourse.h:13
MotorAngle motor_angle
Definition: NormalCourse.h:16
左右モータの回転角に関するクラス(旧Distance.h, SelfLocalization内のMotorAngle)
Definition: Walker.h:7