Skip to content

Commit 6c946ed

Browse files
committed
User serial baud rate of 9600 for all examples
1 parent df691a9 commit 6c946ed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

libraries/CurieBle/examples/AutomationIO/AutomationIO.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ void analogOutputCharWrittenEventCb(BleCentral &central, BleCharacteristic &char
187187
}
188188

189189
void setup() {
190-
LOG_SERIAL.begin(115200);
190+
LOG_SERIAL.begin(9600);
191191

192192
/* Set a name for the BLE device */
193193
CHECK_STATUS(blePeripheral.setLocalName(LOCAL_NAME));

libraries/CurieBle/examples/BatteryMonitor/BatteryMonitor.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void blePeripheralDisconnectedEventCb(BleCentral &bleCentral)
7474

7575
void setup() {
7676
pinMode(13, OUTPUT);
77-
LOG_SERIAL.begin(115200);
77+
LOG_SERIAL.begin(9600);
7878

7979
/* Set a name for the BLE device
8080
* We give it an arbitrary name which will appear in advertising packets

libraries/CurieBle/examples/BatteryMonitorNewAPI/BatteryMonitorNewAPI.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ uint8_t oldBattLvl = 0;
3838
unsigned long previousMillis = 0;
3939

4040
void setup() {
41-
Serial.begin(115200);
41+
Serial.begin(9600);
4242

4343
pinMode(13, OUTPUT);
4444

0 commit comments

Comments
 (0)