Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: ARCH_GPRS_V2_HW Blinker GPRSInterface HTTPClient_GPRS SDFileSystem USBDevice mbed RTC_WorkingLibrary
Fork of finalV1 by
I2C_UART/i2c_uart.cpp
- Committer:
- mbotkinl
- Date:
- 2015-04-16
- Revision:
- 0:a2a4d0d432b3
File content as of revision 0:a2a4d0d432b3:
#include "mbed.h"
#include "i2c_uart.h"
#include "ARCH_GPRS_V2_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);
}
//
