Skip to content

Commit 60e20fb

Browse files
committed
Changing default baud rate to 115200
1 parent fcbdf01 commit 60e20fb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/Example19-Interrupt/Example19-Interrupt.ino

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ byte imuINTPin = 3;
3434

3535
void setup()
3636
{
37-
Serial.begin(9600);
37+
Serial.begin(115200);
3838
Serial.println();
3939
Serial.println("BNO080 Read example with Interrupt handler, getReading and multiple access");
4040

@@ -50,7 +50,9 @@ void setup()
5050
// Wire.setClockStretchLimit(4000);
5151
// //=================================
5252

53-
// imuINTPin is used as an active-low interrupt. .begin configures the pinMode as INPUT_PULLUP
53+
//myIMU.enableDebugging(); // Uncomment this line to enable debug messages on Serial
54+
55+
// imuINTPin is used as an active-low interrupt. .begin configures the pinMode as INPUT_PULLUP
5456
if (myIMU.begin(BNO080_DEFAULT_ADDRESS, Wire, imuINTPin) == false)
5557
{
5658
Serial.println("BNO080 not detected at default I2C address. Check your jumpers and the hookup guide. Freezing...");

0 commit comments

Comments
 (0)