A program using ESP8266 Huzzah to receive message from Amazon AWS service and control a servo to flip on/off the mechanical light switch.

Dependencies:   RPCInterface Servo mbed

Fork of dotbot by Graham Miles

Revision:
0:1fb00e911fe6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Car.h	Mon Dec 12 14:39:25 2016 +0000
@@ -0,0 +1,9 @@
+#include "mbed_rpc.h"
+
+void carTurnRight(Arguments *in, Reply *out);
+void carTurnLeft(Arguments *in, Reply *out);
+void carTurn(Arguments *in, Reply *out);
+void carMoveForwardDistance(Arguments *in, Reply *out);
+void carMoveBackwardDistance(Arguments *in, Reply *out);
+void carStop();
+void carResetEncoders();
\ No newline at end of file