Skip to content

Commit e67ee70

Browse files
committed
update example
1 parent 48b106e commit e67ee70

File tree

6 files changed

+4
-106
lines changed

6 files changed

+4
-106
lines changed

examples/Accelerometer/Accelerometer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
void setup() {
44
// put your setup code here, to run once:
5-
Serial.begin(9600);
5+
Serial.begin();
66

77
Accelerometer.begin();
88
}

examples/Combined_Demo/Combined_Demo.ino

Lines changed: 0 additions & 102 deletions
This file was deleted.

examples/Plug_Sketch_Play/Plug_Sketch_Play.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ int LED = 6;
55

66
void setup() {
77
// put your setup code here, to run once:
8-
Serial.begin(9600);
8+
Serial.begin();
99
while (!Serial);
1010

1111
pinMode(button , INPUT);

examples/Pressure_Sensor/Pressure_Sensor.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "Arduino_SensorKit.h"
22

33
void setup() {
4-
Serial.begin(9600);
4+
Serial.begin();
55
Pressure.begin();
66
}
77

examples/Temp_and_Humidity/Temp_and_Humidity.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include "Arduino_SensorKit.h"
33

44
void setup() {
5-
Serial.begin(9600);
5+
Serial.begin();
66
Environment.begin();
77
}
88

0 commit comments

Comments
 (0)