Bluetooth mérés program

Fork of RN42-HelloWorld by Chris Styles

Files at this revision

API Documentation at this revision

Comitter:
szabolor
Date:
Mon Mar 04 10:20:42 2013 +0000
Parent:
3:cd566919776e
Commit message:
Bluetoothon kereszt?l lehet ?ll?tani az delta id?t ?s a szorz?t is!

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Mon Mar 04 10:01:58 2013 +0000
+++ b/main.cpp	Mon Mar 04 10:20:42 2013 +0000
@@ -1,5 +1,6 @@
 #include "mbed.h"
 #include <cstring>
+#include <cstdio>
 
 Timer timer;            // az időzítő, ami a mérés időpontját biztosítja
 Ticker meres;           // egy időzített feladat, ami végrehajta a mérést
@@ -26,14 +27,21 @@
       timer.start();
       meres.attach(&mfunc, d_ido);
       elinditva = 1;
-    }
+    } else 
     if (strcmp(cmd,"stop") == 0 && elinditva == 1){
       // azaz meg akarom állítani a mérést.
       meres.detach();
       timer.stop();
       timer.reset();
       elinditva = 0;
+    } else
+    if (sscanf(cmd,"set%*[ ]time%*[ ]%f",&d_ido)==1){
+      // azaz beállítom a mérések közötti időt
+    } else
+    if (sscanf(cmd,"set%*[ ]scale%*[ ]%f",&szorzo)==1){
+      // azaz beállítom a mérés szorzóját
     }
+    
 }
 
 int main() {