routeur done

Dependencies:   mbed

Fork of APP4 by Évan Laverdure

trame.cpp

Committer:
joGenie
Date:
2014-02-24
Revision:
2:7515831bb5f5
Child:
3:350f07072089

File content as of revision 2:7515831bb5f5:

#include "trame.hpp"

Trame::Trame(PinName _tx, PinName _rx) :
    tx(_tx),
    rx(_rx)
{
}

void Trame::sendATCommand(const char* command, int data)
{
    Serial xbee(tx, rx);
    xbee.putc(0x10);
}