Initial Fork

Dependencies:   CRC16

Dependents:   eBot_Firmware_V1

Fork of SWSPI by Dave Van Wagner

HC05.h

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

File content as of revision 1:faa9f74488ba:

#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