diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 03d9fe8c7..a816a9bea 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -8,6 +8,9 @@ ARDUINO 1.6.2 * Available ports list is now generated in background: hence "tools" menu is much faster * MacOSX: appbundler merged our contribution, switching to upstream version https://bitbucket.org/infinitekind/appbundler/ +[core] +* Stream: fixed bug in findUntil routine #2591 @Xuth + [libraries] * EEPROM: Replaced existing library with more complete implementation @Chris--A * SD: fixed endless timeout on 32bit core (Due) @Timmmm diff --git a/libraries/Esplora/src/Esplora.cpp b/libraries/Esplora/src/Esplora.cpp index 29c9e191a..f8853e0a4 100644 --- a/libraries/Esplora/src/Esplora.cpp +++ b/libraries/Esplora/src/Esplora.cpp @@ -44,10 +44,10 @@ const byte GREEN_PIN = 10; const byte BUZZER_PIN = 6; // non-multiplexer Esplora pins: -// Accelerometer: x-A5, y-A7, z-A6 +// Accelerometer: x-A5, y-A11, z-A6 // External outputs: D3, D11 -// Buzzer: A8 -// RGB Led: red-D5, green-D10/A11, blue-D9/A10 +// Buzzer: D6 +// RGB Led: red-D5, green-D10, blue-D9 // Led 13: D13 const byte ACCEL_X_PIN = A5;