Code APP3

Dependencies:   mbed EthernetInterface WebSocketClient mbed-rtos BufferedSerial

Fork of APP3_Lab by Jean-Philippe Fournier

main.cpp

Committer:
Cheroukee
Date:
2017-09-30
Revision:
5:9e6a09a38785
Parent:
2:a9bb12eefc08
Child:
6:9ed8153f1328

File content as of revision 5:9e6a09a38785:

#include "mbed.h"

#include "xbee.h"
#include "parser.h"

#define IS_COORDINATOR 1

#define PAN_ID 0xC0FFEE

Serial pc(USBTX, USBRX); // tx, rx

int main() {

    ReadFile();
    
    xbee_init();

    char c;

    char hello_world[12] = "Hello world";


#if IS_COORDINATOR

#else
    DECLARE_ADDR64_COORD
    DECLARE_ADDR16_UNKNOWN_OR_BCAST
    transmit_request(hello_world, 11, 0, USE_ADDR64_COORD, USE_ADDR16_UNKNOWN_OR_BCAST);
#endif

    while(1) {
        if (pc.readable())
        {     
            c = pc.getc();
            xbee.putc(c);      
            //pc.putc(c);         
        }
        if (xbee.readable())
        {
            pc.putc(xbee.getc());            
        }       
    }
}