Create this program
Dependencies: mbed HCSR04 HMC6352 PID TextLCD
Diff: main.cpp
- Revision:
- 2:a8bbf677e774
- Parent:
- 1:d0cada9a5381
- Child:
- 3:901d18b901b4
--- a/main.cpp Tue Aug 04 04:13:02 2015 +0000 +++ b/main.cpp Thu Aug 06 00:19:29 2015 +0000 @@ -1,12 +1,22 @@ +/** + * @file : motor.h (0.1) + * @brief : oversee all + * @author : Shinnosuke KOIKE + * @date : 2015/07/17 + */ + #include "mbed.h" -#include "moter.h" +#include "pinDef.h" +#include "control.h" +#include "motor.h" +#include "infrared.h" #include "compass.h" -#include "infrared.h" #include "ultrasonic.h" +#include "communication.h" Serial pc(USBTX, USBRX); int main(void) { while (1) ; -} \ No newline at end of file +}