Skip to content

Commit 98f3d27

Browse files
authored
Merge pull request opendata-stuttgart#550 from dirkmueller/quickfixes
Quickfixes
2 parents 4cc2066 + 78e20ba commit 98f3d27

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

airrohr-firmware/airrohr-firmware.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -1773,7 +1773,8 @@ static void webserver_config() {
17731773

17741774
static void sensor_restart() {
17751775
#if defined(ESP8266)
1776-
WiFi.forceSleepBegin();
1776+
WiFi.disconnect();
1777+
WiFi.mode(WIFI_OFF);
17771778
delay(100);
17781779
#endif
17791780
SPIFFS.end();

airrohr-firmware/platformio.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ extra_scripts = platformio_script.py
8383
# needs to be adjusted to the matching version from
8484
# https://github.com/platformio/platform-espressif8266/releases
8585
platform_version = [email protected]
86-
platform_version_esp32 = espressif32@1.9.0 ; using Arduino core 1.0.2
86+
platform_version_esp32 = espressif32@1.11.1 ; using Arduino core 1.0.4
8787

8888
[env]
8989
;lib_ldf_mode = chain+ ; automatically detect libraries by the used includes

0 commit comments

Comments
 (0)