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.cpp	Thu May 08 19:10:52 2014 +0000
@@ -0,0 +1,8 @@
+#include "HC05.h"
+
+HC05::HC05(PinName tx_pin, PinName rx_pin, PinName en_pin):
+    Serial(tx_pin, rx_pin),
+    on_switch(en_pin)
+{
+    on_switch = 1;
+}