speech to text converter

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
bhshruthi92
Date:
Mon Apr 03 23:21:56 2017 +0000
Commit message:
Speech to Text conversion using FRDM K64F with the help of Bluetooth Module HC 06 and an Android phone.

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 Apr 03 23:21:56 2017 +0000
@@ -0,0 +1,29 @@
+#include "mbed.h"
+#include <stdio.h>
+#include <string.h>
+
+Serial pc(USBTX, USBRX);
+Serial device(PTC15, PTC14);
+ 
+unsigned char recivedchar[255];
+int i; 
+
+int main()
+{
+    printf("\n **********READY********** \n");
+    unsigned char rx;
+    device.baud(9600);
+    while(1) 
+    {  
+         if(device.readable()) 
+        {
+            for(i =0;i<255;i++)
+            {
+            rx = device.getc();
+            recivedchar[i] =rx;
+            pc.printf("%c",recivedchar[i]);
+            break;
+            } 
+         }
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Apr 03 23:21:56 2017 +0000
@@ -0,0 +1,1 @@
+https://mbed.org/users/mbed_official/code/mbed/builds/093f2bd7b9eb
\ No newline at end of file