Skip to content

Commit b378852

Browse files
committed
update version to 2.10
1 parent 5503dd0 commit b378852

File tree

27 files changed

+69
-54
lines changed

27 files changed

+69
-54
lines changed

examples/Factory_Test/WIFI_Kit_32_FactoryTest/WIFI_Kit_32_FactoryTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void WIFISetUp(void)
4242
WiFi.disconnect(true);
4343
delay(100);
4444
WiFi.mode(WIFI_STA);
45-
WiFi.setAutoConnect(true);
45+
WiFi.setAutoReconnect(true);
4646
WiFi.begin("Your WiFi SSID","Your Password");//fill in "Your WiFi SSID","Your Password"
4747
delay(100);
4848

examples/Factory_Test/WIRELESS_MINI_SHELL_FactoryTest/WIRELESS_MINI_SHELL_FactoryTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ void WIFISetUp(void)
253253
WiFi.disconnect(true);
254254
delay(100);
255255
WiFi.mode(WIFI_STA);
256-
WiFi.setAutoConnect(true);
256+
WiFi.setAutoReconnect(true);
257257
WiFi.begin(TEST_WIFI_SSID,TEST_WIFI_PWD);//fill in "Your WiFi SSID","Your Password"
258258
delay(100);
259259

examples/Factory_Test/WiFi_Kit_32_V3_FactoryTest/WiFi_Kit_32_V3_FactoryTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void WIFISetUp(void)
4242
WiFi.disconnect(true);
4343
delay(100);
4444
WiFi.mode(WIFI_STA);
45-
WiFi.setAutoConnect(true);
45+
WiFi.setAutoReconnect(true);
4646
WiFi.begin("Your WiFi SSID","Your Password");//fill in "Your WiFi SSID","Your Password"
4747
delay(100);
4848

examples/Factory_Test/WiFi_LoRa_32_V2_FactoryTest/WiFi_LoRa_32_V2_FactoryTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ void WIFISetUp(void)
157157
WiFi.disconnect(true);
158158
delay(100);
159159
WiFi.mode(WIFI_STA);
160-
WiFi.setAutoConnect(true);
160+
WiFi.setAutoReconnect(true);
161161
WiFi.begin("Your WiFi SSID","Your Password");//fill in "Your WiFi SSID","Your Password"
162162
delay(100);
163163

examples/Factory_Test/WiFi_LoRa_32_V3/WiFi_LoRa_32_V3_FactoryTest_V1/WiFi_LoRa_32_V3_FactoryTest_V1.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ void WIFISetUp(void)
157157
WiFi.disconnect(true);
158158
delay(100);
159159
WiFi.mode(WIFI_STA);
160-
WiFi.setAutoConnect(true);
160+
WiFi.setAutoReconnect(true);
161161
WiFi.begin("Your WiFi SSID","Your Password");//fill in "Your WiFi SSID","Your Password"
162162
delay(100);
163163

examples/Factory_Test/WiFi_LoRa_32_V3/WiFi_LoRa_32_V3_FactoryTest_V2/WiFi_LoRa_32_V3_FactoryTest_V2.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ void WIFISetUp(void)
249249
WiFi.disconnect(true);
250250
delay(100);
251251
WiFi.mode(WIFI_STA);
252-
WiFi.setAutoConnect(true);
252+
WiFi.setAutoReconnect(true);
253253
WiFi.begin(TEST_WIFI_SSID,TEST_WIFI_PWD);//fill in "Your WiFi SSID","Your Password"
254254
delay(100);
255255

examples/Factory_Test/Wireless_Paper_V1.0_FactoryTest/Wireless_Paper_V1.0_FactoryTest.ino

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ QYEG0213RWS800_BWR factory_display(6, 5, 4,7, 3,2,-1, 6000000);//rst,dc,cs,bus
3939
// 1: 250 kHz,
4040
// 2: 500 kHz,
4141
// 3: Reserved]
42+
#define LORA_BANDWIDTH 0 // [0: 125 kHz,
43+
// 1: 250 kHz,
44+
// 2: 500 kHz,
45+
// 3: Reserved]
4246
#define LORA_SPREADING_FACTOR 7 // [SF7..SF12]
4347
#define LORA_CODINGRATE 1 // [1: 4/5,
4448
// 2: 4/6,
@@ -160,7 +164,7 @@ void WIFISetUp(void)
160164
WiFi.disconnect(true);
161165
delay(100);
162166
WiFi.mode(WIFI_STA);
163-
WiFi.setAutoConnect(true);
167+
WiFi.setAutoReconnect(true);
164168
WiFi.begin("Heltec-RD","hunter_3120");//fill in "Your WiFi SSID","Your Password"
165169
delay(100);
166170

examples/Factory_Test/Wireless_Paper_V1.1_FactoryTest/Wireless_Paper_V1.1_FactoryTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ void WIFISetUp(void)
194194
WiFi.disconnect(true);
195195
delay(100);
196196
WiFi.mode(WIFI_STA);
197-
WiFi.setAutoConnect(true);
197+
WiFi.setAutoReconnect(true);
198198
WiFi.begin("TP-LINK_B8BC", "heltec_test"); //fill in "Your WiFi SSID","Your Password"
199199
delay(100);
200200

examples/Factory_Test/Wireless_Shell_FactoryTest/Wireless_Shell_FactoryTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ void WIFISetUp(void)
149149
WiFi.disconnect(true);
150150
delay(100);
151151
WiFi.mode(WIFI_STA);
152-
WiFi.setAutoConnect(true);
152+
WiFi.setAutoReconnect(true);
153153
WiFi.begin("Your WiFi SSID","Your Password");//fill in "Your WiFi SSID","Your Password"
154154
delay(100);
155155
Serial.print("Connecting...");

examples/Factory_Test/Wireless_Shell_V3_FactoryTest/Wireless_Shell_V3_FactoryTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ void WIFISetUp(void)
149149
WiFi.disconnect(true);
150150
delay(100);
151151
WiFi.mode(WIFI_STA);
152-
WiFi.setAutoConnect(true);
152+
WiFi.setAutoReconnect(true);
153153
WiFi.begin("Your WiFi SSID","Your Password");//fill in "Your WiFi SSID","Your Password"
154154
delay(100);
155155
Serial.print("Connecting...");

0 commit comments

Comments
 (0)