seeedstudio ARCH GPRS Demo. post data to yeelink.

Dependencies:   mbed

I2C_UART/i2c_uart.cpp

Committer:
loovee
Date:
2013-08-23
Revision:
0:6d297fe482af

File content as of revision 0:6d297fe482af:

#include "mbed.h"
#include "i2c_uart.h"
#include "ARCH_GPRS_HW_DFS.h"

#define ADDRESS        8

I2C i2c_debug(GROVE_I2C_SDA, GROVE_I2C_SCL);


void debug_i2c(char *dta)
{
    int len = strlen(dta);
    i2c_debug.write(ADDRESS, dta, len);
    //wait_ms(10);
}

void debug_i2c(char dta)
{
    char dta1[5];
    sprintf(dta1, "%c", dta);
    debug_i2c(dta1);
}
//