Initial Fork

Dependencies:   CRC16

Dependents:   eBot_Firmware_V1

Fork of SWSPI by Dave Van Wagner

Revision:
1:faa9f74488ba
Child:
2:c13831ca234c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HC05.h	Thu May 08 19:10:52 2014 +0000
@@ -0,0 +1,15 @@
+#ifndef HC05_H
+#define HC05_H
+
+#include "mbed.h"
+
+class HC05 : public Serial
+{
+private:
+public:
+    HC05(PinName tx_pin, PinName rx_pin, PinName en_pin);
+    
+    DigitalOut on_switch;    
+};
+
+#endif