タコ 腕

Dependencies:   2017NHKpin_config FEP ikarashiMDC

Fork of NHK2017_octopus2 by NagaokaRoboticsClub_mbedTeam

bot/bot.h

Committer:
uchitake
Date:
2017-09-05
Revision:
1:845af5425eec
Child:
3:369d9ee17e84

File content as of revision 1:845af5425eec:

/**
* @file bot.h
* @brief ロボットのクラス
*/
#ifndef BOT_H
#define BOT_H

#include "mbed.h"
#include "pin_config.h"
#include "motor_driver.h"
#include "controller.h"
#include "PID_controller.h"

#define ARM_MAX_SPEED 1
#define DESTROY_MAX_SPEED 1

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

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

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

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

private :
    Controller pad;
    MotorDriver motor;
    bool suc;
};

#endif//BOT_H