Skip to content

Commit

Permalink
Change examples to 115200bps to match style guide
Browse files Browse the repository at this point in the history
  • Loading branch information
nseidle committed Dec 30, 2020
1 parent 3863cea commit ab32ea0
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/Example10_DewPoint/Example10_DewPoint.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ BME280 mySensor;

void setup()
{
Serial.begin(9600);
Serial.begin(115200);
Serial.println("Example showing dewpoint calculation");

mySensor.setI2CAddress(0x76); //Connect to a second sensor
Expand Down
2 changes: 1 addition & 1 deletion examples/Example11_BurstRead/Example11_BurstRead.ino
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ BME280_SensorMeasurements measurements;

void setup()
{
Serial.begin(9600);
Serial.begin(115200);
Serial.println("Reading basic values from BME280 as a Burst");

Wire.begin();
Expand Down
2 changes: 1 addition & 1 deletion examples/Example1_BasicReadings/Example1_BasicReadings.ino
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ BME280 mySensor;

void setup()
{
Serial.begin(9600);
Serial.begin(115200);
Serial.println("Reading basic values from BME280");

Wire.begin();
Expand Down
2 changes: 1 addition & 1 deletion examples/Example2_I2CAddress/Example2_I2CAddress.ino
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ BME280 mySensorB; //Uses I2C address 0x76 (jumper closed)

void setup()
{
Serial.begin(9600);
Serial.begin(115200);
Serial.println("Example showing alternate I2C addresses");

Wire.begin();
Expand Down
2 changes: 1 addition & 1 deletion examples/Example3_CSVOutput/Example3_CSVOutput.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ unsigned long sampleNumber = 0;

void setup()
{
Serial.begin(9600);
Serial.begin(115200);

Wire.begin();

Expand Down
2 changes: 1 addition & 1 deletion examples/Example4_Settings/Example4_Settings.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ BME280 mySensor;

void setup()
{
Serial.begin(9600);
Serial.begin(115200);
Serial.println("Example showing alternate I2C addresses");

Wire.begin();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ BME280 mySensor;

void setup()
{
Serial.begin(9600);
Serial.begin(115200);
while(!Serial); //Needed for printing correctly when using a Teensy
Serial.println("Reading all registers from BME280");

Expand Down
2 changes: 1 addition & 1 deletion examples/Example6_LowPower/Example6_LowPower.ino
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ BME280 mySensor;

void setup()
{
Serial.begin(9600);
Serial.begin(115200);
Serial.println("Example showing alternate I2C addresses");

Wire.begin();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ float localAltitude = 0;

void setup()
{
Serial.begin(9600);
Serial.begin(115200);
while(!Serial); //Wait for user to get terminal open
Serial.println("Output a local changing altitude");
Serial.println("Press any key to zero local altitude");
Expand Down
2 changes: 1 addition & 1 deletion examples/Example8_LocalPressure/Example8_LocalPressure.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ BME280 mySensor;

void setup()
{
Serial.begin(9600);
Serial.begin(115200);
Serial.println("Example showing alternate I2C addresses");

Wire.begin();
Expand Down
2 changes: 1 addition & 1 deletion examples/Example9_SoftwareI2C/Example9_SoftwareI2C.ino
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ BME280 mySensor;

void setup()
{
Serial.begin(9600);
Serial.begin(115200);
Serial.println("Example showing alternate I2C addresses");

myWire.begin();
Expand Down

0 comments on commit ab32ea0

Please sign in to comment.