Initial Fork
Dependencies: CRC16
Fork of SWSPI by
Diff: HC05.h
- Revision:
- 1:faa9f74488ba
- Child:
- 2:c13831ca234c
diff -r 6a500a08c7fd -r faa9f74488ba HC05.h --- /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