Initial Fork

Dependencies:   CRC16

Dependents:   eBot_Firmware_V1

Fork of SWSPI by Dave Van Wagner

HC05.cpp

Committer:
Throwbot
Date:
2014-05-08
Revision:
1:faa9f74488ba
Child:
2:c13831ca234c

File content as of revision 1:faa9f74488ba:

#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;
}