Mode3
Dependencies: WiflyInterface mbed C12832_lcd
Fork of IOT-Project-LED-ControlTelnet by
Revision 7:7f0988b083cb, committed 2014-06-09
- Comitter:
- bhakti08
- Date:
- Mon Jun 09 23:41:37 2014 +0000
- Parent:
- 6:c9595d2630c7
- Child:
- 8:c20dc0f4bc92
- Commit message:
- Final_mode_2;
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Mon Jun 09 23:32:35 2014 +0000
+++ b/main.cpp Mon Jun 09 23:41:37 2014 +0000
@@ -10,6 +10,8 @@
#define RIGHT 2
#define STOP 0
#define STRAIGHT_WHEEL 5
+#define servo_1 6
+#define servo_2 7
PwmOut servo(p22);
@@ -74,6 +76,10 @@
motor = LEFT;
else if (!(strcmp(buffer,"s")))
motor = STOP;
+ else if (!(strcmp(buffer,"o")))
+ motor = servo_1;
+ else if (!(strcmp(buffer,"p")))
+ motor = servo_2;
//}
servo.pulsewidth_us(10);
wait_us(1);
