Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of FYDP_Final2 by
HC05.h
00001 #ifndef HC05_H 00002 #define HC05_H 00003 00004 #include "mbed.h" 00005 #include "rtos.h" 00006 #include "MODSERIAL.h" 00007 00008 class HC05 : public MODSERIAL, public Mutex 00009 { 00010 private: 00011 public: 00012 HC05(PinName tx_pin, PinName rx_pin, PinName en_pin); 00013 void start(); 00014 void stop(); 00015 DigitalOut on_switch; 00016 }; 00017 00018 #endif
Generated on Tue Jul 12 2022 16:56:35 by
