Port of Adafruit Arduino code

Dependencies:   mbed

Fork of Adafruit9-DOf by Bruno Manganelli

Source/I2C_base.cpp

Committer:
jatinsha
Date:
2015-11-29
Revision:
2:fe10a40b42e8
Parent:
0:772bf4786416

File content as of revision 2:fe10a40b42e8:

#include "I2C_base.h"

#ifdef _MBED_

//setup the right i2c class
I2C_base* i2c = new I2C_MBED(SDA, SCL);

//setup millis function
Timer p_t;
int millis()
{
    return p_t.read_ms();
}


#endif //_MBED_