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.
main.cpp
- Committer:
- kuldipmaharjan
- Date:
- 2014-01-08
- Revision:
- 0:06b912195632
File content as of revision 0:06b912195632:
//Author: Kuldip Maharjan
//Email : kuldipmaharjan@gmail.com
//Anyone can use this code if it helps in their projects or
//for learning programing in mbed besides for commercial purposes
//Simple program for getting message from bluetooth module and printing them on pc terminal
#include "mbed.h"
Serial window_app(p9, p10); // tx, rx
Serial pc(USBTX, USBRX); // tx, rx
int main()
{
pc.baud(115200);
window_app.baud(9600);
pc.printf("start");
uint8_t buf[128];
while(1) {
wait(1);
if (window_app.readable()) {
pc.printf("\rsomething is there\n");
//window_app.scanf("%s", buf);
//pc.printf("%s",buf);
while (window_app.readable()) {
pc.printf("%c",window_app.getc());
}
pc.printf("\n");
} else {
pc.printf("\rnothing is there\n");
window_app.printf("payo\r");
window_app.printf("smart mug\r");
window_app.printf("vostro\r");
window_app.printf("there is a mug\r");
}
}
}