NHK2017 octopus robot

Dependencies:   2017NHKpin_config mbed FEP ikarashiMDC PID jy901 omni HMC6352 omni_wheel

Fork of KANI2017v2 by NagaokaRoboticsClub_mbedTeam

bot/bot.cpp

Committer:
UCHITAKE
Date:
2017-08-22
Revision:
1:269914e0aa07
Parent:
0:757e9800c103
Child:
2:ea151e05033a

File content as of revision 1:269914e0aa07:

#include "bot.h"

Bot::Bot() : Controller(), MotorDriver()
{
}

void Bot::confirmAll()
{
    receiveState();

}

void Bot::controllDrive()
{
    goPolar(vector, stick[2]);
}

void Bot::controllMech()
{
    if(!Button1[0]) moveSlider(ARM_MAX_SPEED);
    if(!Button1[1]) moveSlider(-ARM_MAX_SPEED);
    if(Button1[0] && Button1[1]) moveSlider(0);

    if(!Button1[2]) {
        destroy(DESTROY_MAX_SPEED);
    } else {
        destroy(0);
    }
}