Repositório para o trabalho semestral (Projeto Estufa) de Microcontroladores.

Dependencies:   mbed

Revision:
2:397bd847dbd5
Child:
3:446af583421c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Bluetooth/main.cpp	Wed Jun 06 20:00:01 2018 +0000
@@ -0,0 +1,45 @@
+#include "mbed.h"
+
+// Declaração do serial de comunicação
+Serial device(p9, p10);
+
+int main()
+{
+    device.baud(9600);
+
+    // Char recebido
+    char recivedchar;
+
+    while (1)
+    {
+        if (device.readable())
+        {
+            recivedchar = device.getc();
+            switch (recivedchar)
+            {
+                case 'A':
+                    device.printf("\nVocê inseriu a letra %c\n", recivedchar);
+                    break;
+
+                case 'B':
+                    device.printf("\nVocê inseriu a letra B\n");
+                    break;
+
+                case 'C':
+                    device.printf("\nVocê inseriu a letra C\n");
+                    break;
+            
+                // Estava dando erro
+                //  default:
+                //     device.printf("\nNÃO PODE");
+                //     break;
+            }
+            //wait(3.0f);
+        }
+        else
+        {
+            device.printf("\nAguardando entrada...\n");
+            wait(3.0f);
+        }
+    }
+}
\ No newline at end of file