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.
Revision 0:f6a134626fae, committed 2018-03-19
- Comitter:
- lmpell
- Date:
- Mon Mar 19 15:59:44 2018 +0000
- Commit message:
- File version for HC-05 AT-Command
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Mon Mar 19 15:59:44 2018 +0000 @@ -0,0 +1,31 @@ +#include "mbed.h" + +Serial pc(USBTX, USBRX ); + +Serial blue(PTC15, PTC14); //tx, rx + + + +int main() +{ + int i = 0; + pc.baud(9600); //setting pc baud rate to 9600 + pc.printf("Enter AT Command\n"); //displaying to terminal + blue.baud(38400); //setting bluetooth baud rate to 38400 + + while (true) { + + //while pc is sending data + while(pc.readable()) + { + //send data to bluetooth device + blue.putc(pc.getc()); + } + //while bluetooth device is sending data + while(blue.readable()) + { + //send data to pc + pc.putc(blue.getc()); + } + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Mon Mar 19 15:59:44 2018 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/aa5281ff4a02 \ No newline at end of file