Changed default speed on Wire library to 100kpbs (same as AVR Arduinos), thanks to @fredbox on the forum for the delay values to achieve 100kbps

This commit is contained in:
Roger Clark 2015-08-03 09:45:57 +10:00
parent 07ba8f279a
commit d3bd109013
1 changed files with 1 additions and 1 deletions

View File

@ -191,4 +191,4 @@ TwoWire::~TwoWire() {
// Declare the instance that the users of the library can use // Declare the instance that the users of the library can use
//TwoWire Wire(SCL, SDA, SOFT_STANDARD); //TwoWire Wire(SCL, SDA, SOFT_STANDARD);
TwoWire Wire(PB6, PB7, SOFT_FAST); TwoWire Wire(PB6, PB7, SOFT_STANDARD);