Skip to content

Commit 3f8fc44

Browse files
committed
baudrate defaults to 115200
1 parent 8351ed7 commit 3f8fc44

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

examples/ESP32/ActionsHandling/ActionsHandling.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ int YetAnotherHelloWorld_Hanlder(char* args, char* actionId) {
7474

7575
void setup() {
7676
// put your setup code here, to run once:
77-
Serial.begin(9600);
77+
Serial.begin(115200);
7878
Serial.println();
7979

8080
setupWifi();

examples/ESP32/BasicOTA/BasicOTA.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void syncTimeFromNtp() {
5454

5555
void setup() {
5656
// put your setup code here, to run once:
57-
Serial.begin(9600);
57+
Serial.begin(115200);
5858
Serial.println();
5959

6060
setupWifi();

examples/ESP32/BasicOTA_GSM/BasicOTA_GSM.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ void syncTimeFromNtp() {
123123

124124
void setup() {
125125
// put your setup code here, to run once:
126-
SerialMon.begin(9600);
126+
SerialMon.begin(115200);
127127
SerialMon.println();
128128

129129
setupModem();

examples/ESP32/CloudLogging/CloudLogging.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ void bytebeamCloudLoggingTest() {
8989

9090
void setup() {
9191
// put your setup code here, to run once:
92-
Serial.begin(9600);
92+
Serial.begin(115200);
9393
Serial.println();
9494

9595
setupWifi();

examples/ESP32/EspTouch/EspTouch.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ boolean publishEspTouchValues() {
125125

126126
void setup() {
127127
// put your setup code here, to run once:
128-
Serial.begin(9600);
128+
Serial.begin(115200);
129129
Serial.println();
130130

131131
setupWifi();

examples/ESP32/PublishChipTemperature/PublishChipTemperature.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ void publishChipTemperature(char* stream) {
125125

126126
void setup() {
127127
// put your setup code here, to run once:
128-
Serial.begin(9600);
128+
Serial.begin(115200);
129129
Serial.println();
130130

131131
setupWifi();

examples/ESP32/PushData/PushData.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ boolean publishToDeviceShadow() {
118118

119119
void setup() {
120120
// put your setup code here, to run once:
121-
Serial.begin(9600);
121+
Serial.begin(115200);
122122
Serial.println();
123123

124124
setupWifi();

examples/ESP32/SetupClient/SetupClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void syncTimeFromNtp() {
5757

5858
void setup() {
5959
// put your setup code here, to run once:
60-
Serial.begin(9600);
60+
Serial.begin(115200);
6161
Serial.println();
6262

6363
setupWifi();

examples/ESP32/SetupClient_GSM/SetupClient_GSM.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ void syncTimeFromNtp() {
126126

127127
void setup() {
128128
// put your setup code here, to run once:
129-
SerialMon.begin(9600);
129+
SerialMon.begin(115200);
130130
SerialMon.println();
131131

132132
setupModem();

examples/ESP32/ToggleLED/ToggleLED.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ int ToggleLED_Hanlder(char* args, char* actionId) {
159159

160160
void setup() {
161161
// put your setup code here, to run once:
162-
Serial.begin(9600);
162+
Serial.begin(115200);
163163
Serial.println();
164164

165165
setupWifi();

0 commit comments

Comments
 (0)