Envia valor de voltaje leido escalado por bluetooth.
Fork of VOLTIMETRO1 by
Diff: main.cpp
- Revision:
- 3:fc81cdd10312
- Parent:
- 2:8a0e46a84596
--- a/main.cpp Fri Apr 17 20:17:55 2015 +0000 +++ b/main.cpp Fri Apr 24 04:02:16 2015 +0000 @@ -6,10 +6,6 @@ #include "mbed.h" #include <stdio.h> //#include <conio.h> -DigitalOut LedVerde(LED2); -DigitalOut LedRojo(LED1); -DigitalOut LedAzul(LED3); - Serial GSM(PTE0,PTE1); //puertos del FRDM para el modem Serial pc(USBTX,USBRX); int med,num,i,j,k; @@ -22,9 +18,10 @@ while(1){ //leo puerto analogico - wait(0.5); + wait(0.2); num = input*1000; //agrando el numero de cero a mil - if(num<256){ //debo generar dos casos a APP inventor solo me recibe hex asi: 0xhhhh (4 cifras) + if(num<256){ + i=num; //debo generar dos casos a APP inventor solo me recibe hex asi: 0xhhhh (4 cifras) GSM.putc(0); //si el numero es hasta 255 se le ponen dos ceros adelante a la secuencia de bits GSM.putc(i); //luego la cifra menos significativa }