tp_iot

Dependencies:   mbed DHT HC_SR04_Ultrasonic_Library

main.cpp

Committer:
abastie
Date:
2017-05-24
Revision:
5:0186f7e2053e
Parent:
4:74e0c3de6749
Child:
6:cd3b177a3e33

File content as of revision 5:0186f7e2053e:

#include "mbed.h"
#include "Serial.h"
#include <string>

 // WE USE PA_2 = TX } CN9
 //        PA_3 = RX } CN9
 
 
AnalogIn analog_value(A0);
 
DigitalOut led(LED2);

int main() {
    float meas;
    Serial serial_td1208(PA_2, PA_3);
    
    //std::string init("AT");
    
    //std::string query("AT$SS=00 12 FF 42/r/n");
    
    char* query = "AT$SS=0012FF42";
    
    serial_td1208.baud(9600);
    serial_td1208.format();
    //serial_td1208.printf("%s", init);
    
    
    printf("\nAnalogIn example\n");
    led = 1;
    
    while(1) {

        if (led == 1)
            led = 0;
        else
            led = 1;
 
        serial_td1208.printf("AT$SS=0012FF42");
        wait(10); // 750 ms
    }
}