タコ 駆動側 

Dependencies:   2017NHKpin_config FEP R1307 PID ikarashiMDC omni_wheel

Fork of NHK2017_octopus2 by NagaokaRoboticsClub_mbedTeam

main.cpp

Committer:
uchitake
Date:
2017-10-05
Revision:
29:41f6fc4c8962
Parent:
17:79fa65706f92
Child:
41:ae6f844facb1

File content as of revision 29:41f6fc4c8962:

#include "mbed.h"
#include "pin_config.h"
#include "bot.h"

Bot KANI;
Serial pc(USBTX, USBRX, 115200);

int main()
{
    pc.printf("const\n\r");
    while(1) {
        printf("loop\n\r");
        KANI.confirmAll();
        // KANI.controllDrive();
        KANI.controllDrive2();
        // KANI.controllDrive3();
        KANI.controllMech();
        KANI.calibrate();
        wait(INTERVAL);
    }
}