タコ 駆動側
Dependencies: 2017NHKpin_config FEP R1307 PID ikarashiMDC omni_wheel
Fork of NHK2017_octopus2 by
bot/bot.h
- Committer:
- number_key
- Date:
- 2017-11-11
- Revision:
- 49:69a7235d837a
- Parent:
- 41:ae6f844facb1
- Child:
- 50:3a7c858aa0f9
File content as of revision 49:69a7235d837a:
/** * @file bot.h * @brief ロボットのクラス */ #ifndef BOT_H #define BOT_H #include "mbed.h" #include "pin_config.h" #include "controller.h" #include "PID_controller.h" #include "tentacle_unit.h" #include "elevator.h" #include "sword_unit.h" #include "wheel_unit.h" #include "def.h" const float ADJUST_DEGREE = 5.0; /** * @brief ロボットのクラス */ class Bot { public : /** * @brief コンストラクタ */ Bot(); /** * @brief センサなどの値を更新 */ void confirmPad1(); void confirmPad2(); /** * @brief 足回りの制御 */ void controllDrive(); void controllDrive2(); void controllDrive3(); void controllDrive4(); /** * @brief 機構部の制御 */ void controllMech(); /** * センサのキャリブレーション */ void calibrate(); void checkConnection(); void checkDegree(); private : Controller pad1; Controller pad2; Serial RS485; DigitalOut RS485Controller; DigitalOut powerSwitch; WheelUnit quadOmni; Tentacle tentacle; Elevator nishijoSword; Sword nishijo; PIDC plane; PIDC axis; bool receiveSuccessed1; bool receiveSuccessed2; float frontDegree; DigitalOut led[3]; Serial debugSerial; Timer t; }; #endif//BOT_H