調整中

Dependencies:   mbed HMC6352 US015 TB6612FNG2 getGPS ATP3011

Rotate/Rotate.cpp

Committer:
user_
Date:
2021-10-27
Revision:
12:0b8b980ba896
Parent:
11:5c0237c3fb1e

File content as of revision 12:0b8b980ba896:

void ROttate(double angle) {
    // double time = angle; // 試験で調整してください。
    int time = 3;  // 試験用のため適当
    if (angle > 0) {
        MotorDriver('5', 1);
        wait(time);
        MotorDriver('1', 0);  
    } elif (angle < 0) {
        MotorDriver('6', 1);
        wait(time);
        MotorDriver('1', 0);
    }
}