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.cpp
00001 #include "HC05.h" 00002 00003 HC05::HC05(PinName tx_pin, PinName rx_pin, PinName en_pin): 00004 MODSERIAL(tx_pin, rx_pin), 00005 on_switch(en_pin) 00006 { 00007 //wait_ms(5000); //mark 00008 on_switch = 0; 00009 } 00010 void HC05::start(){ 00011 on_switch = 1; 00012 } 00013 //void HCO5::stop(){ 00014 // on_switch = 0; 00015 //}
Generated on Tue Jul 12 2022 16:56:35 by
