Browse Source

0.6.4 2021-03-22

* updated Arduino core to 2.7.4
FloKra 3 years ago
parent
commit
16750fa041

+ 6 - 6
.vscode/extensions.json

@@ -1,7 +1,7 @@
 {
-	// See http://go.microsoft.com/fwlink/?LinkId=827846
-	// for the documentation about the extensions.json format
-	"recommendations": [
-		"platformio.platformio-ide"
-	]
-}
+    // See http://go.microsoft.com/fwlink/?LinkId=827846
+    // for the documentation about the extensions.json format
+    "recommendations": [
+        "platformio.platformio-ide"
+    ]
+}

+ 5 - 1
CHANGELOG.md

@@ -1,6 +1,10 @@
 # WiFiThermostat - Changelog
 
-## 0.6.2 2021-03-14
+## 0.6.4 2021-03-22
+
+* updated Arduino core to 2.7.4
+
+## 0.6.3 2021-03-14
 
 * BUGFIXES:
     * wrong value in MQTT out "currSetTemp"

+ 12 - 1
platformio.ini

@@ -8,8 +8,19 @@
 ; Please visit documentation for the other options and examples
 ; https://docs.platformio.org/page/projectconf.html
 
-[env:d1_mini]
+[env:d1_mini_core2.6.3]
 platform = espressif8266@2.3.2
+;platform: espressif8266@2.3.2 = Arduino Core 2.6.3
+board = d1_mini
+framework = arduino
+;upload_port = COM[6]
+upload_speed = 921600
+upload_resetmethod = nodemcu
+monitor_speed = 115200
+
+[env:d1_mini_core2.7.4]
+platform = espressif8266@2.6.3
+;platform: espressif8266@2.6.2, 2.6.3 = Arduino Core 2.7.4
 board = d1_mini
 framework = arduino
 ;upload_port = COM[6]

BIN
releases/bin/WiFiThermostat.ino.d1_mini.20210322_v0.6.4.bin


BIN
releases/src/WiFiThermostat_0.6.4.zip


+ 1 - 1
src/fwversion.h

@@ -1,6 +1,6 @@
 // DEFINE NAMES
 #define FIRMWARE_NAME "WiFiThermostat"
-#define FIRMWARE_VERSION "0.6.3"
+#define FIRMWARE_VERSION "0.6.4"
 #define FIRMWARE_URL "https://git.flokra.at/flo/WiFiThermostat"
 #define FIRMWARE_COPYRIGHT "FloKra"
 #define FIRMWARE_COPYRIGHT_URL "https://www.flokra.at/"