GROVE - バイブレータ サンプルプログラム

Dependencies:   mbed

main.cpp

Committer:
jksoft
Date:
2013-11-30
Revision:
0:b936e8c7c30b

File content as of revision 0:b936e8c7c30b:

#include "mbed.h"

DigitalOut VibrationMotor(p5);

int main() {
    while(1) {
        VibrationMotor = 1;
        wait(1.0);
        VibrationMotor = 0;
        wait(1.0);
    }
}