Octopus!!

Dependencies:   2017NHKpin_config FEP HMC6352 PID QEI R1307 ikarashiMDC omni_wheel

Fork of KANIv3 by NagaokaRoboticsClub_mbedTeam

bot/bot.h

Committer:
uchitake
Date:
2017-09-12
Revision:
14:1fadf7d2f583
Parent:
9:39be1525dfe0
Child:
15:9aa11febe517

File content as of revision 14:1fadf7d2f583:

/**
* @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 "slider.h"
#include "wheel_unit.h"

const int SWORD = 1;

/**
* @brief ロボットのクラス
*/
class Bot : public PIDC
{
public :
    /**
    * @brief コンストラクタ
    */
    Bot();

    /**
    * @brief センサなどの値を更新
    */
    void confirmAll();

    /**
    * @brief 足回りの制御
    */
    void controllDrive();
    void controllDrive2();

    /**
    * @brief 機構部の制御
    */
    void controllMech();

    void calibrate();

private :
    Controller pad;
    Serial RS485;
    DigitalOut RS485Controller;
    DigitalOut powerSwitch;
    WheelUnit quadOmni;
    Slider slider;
    ikarashiMDC armMotor[3];
    bool receiveSuccessed;
    DigitalOut led[3];
    Serial debugSerial;
};

#endif//BOT_H