We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c34a7b9 + e6b797a commit fad6222Copy full SHA for fad6222
libraries/Wire/src/Wire.cpp
@@ -10,6 +10,7 @@ arduino::MbedI2C::MbedI2C(int sda, int scl) : _sda(sda), _scl(scl), usedTxBuffer
10
void arduino::MbedI2C::begin() {
11
if(!master){
12
master = new mbed::I2C((PinName)_sda, (PinName)_scl);
13
+ setClock(100000); //Default to 100kHz
14
}
15
16
0 commit comments