Skip to content

Commit 257a753

Browse files
committed
release version 1.14
1 parent a22a95b commit 257a753

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

arduino/WeatherStation/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
## 1.14
3+
### Fixes
4+
- Improved wifi settings persistance to allow WiFi network name with slash char
5+
26
## 1.13
37
## Fixes
48
- Improved Web server response

arduino/WeatherStation/Version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef VERSION_H
22
#define VERSION_H
33

4-
#define VERSION "1.13"
4+
#define VERSION "1.14"
55

66
const char *getLongVersion();
77

arduino/WeatherStation/WeatherStation.ino

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
Board: Lolin D1 mini (clone) (ESP-12E Module)
33
Executable segment sizes:
44
ICACHE : 32768 - flash instruction cache
5-
IROM : 954552 - code in flash (default or ICACHE_FLASH_ATTR)
5+
IROM : 956556 - code in flash (default or ICACHE_FLASH_ATTR)
66
IRAM : 29565 / 32768 - code in IRAM (IRAM_ATTR, ISRs...)
7-
DATA : 1712 ) - initialized variables (global, static) in RAM/HEAP
8-
RODATA : 8116 ) / 81920 - constants (global, static) in RAM/HEAP
9-
BSS : 28064 ) - zeroed variables (global, static) in RAM/HEAP
10-
Sketch uses 993945 bytes (95%) of program storage space. Maximum is 1044464 bytes.
11-
Global variables use 37892 bytes (46%) of dynamic memory, leaving 44028 bytes for local variables. Maximum is 81920 bytes
7+
DATA : 1716 ) - initialized variables (global, static) in RAM/HEAP
8+
RODATA : 8140 ) / 81920 - constants (global, static) in RAM/HEAP
9+
BSS : 28056 ) - zeroed variables (global, static) in RAM/HEAP
10+
Sketch uses 995977 bytes (95%) of program storage space. Maximum is 1044464 bytes.
11+
Global variables use 37912 bytes (46%) of dynamic memory, leaving 44008 bytes for local variables. Maximum is 81920 bytes.
1212
*/
1313

1414
#include <Arduino.h>

arduino/WeatherStation/interface/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "weather-station",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"private": true,
55
"dependencies": {
66
"@date-io/date-fns": "^1.3.13",

arduino/WeatherStation/scripts/createReleaseFiles.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
setlocal
22
set BUILD_FOLDER=c:\tmp\_ArduinoOutput\d1mini\weatherstation
33
rem grep "#define VERSION.*[0-9]" ..\Version.h | sed -n "s/.*VERSION.*\([0-9]\.[0-9]\+.*\)""/\1/p"
4-
set VERSION=1.13
4+
set VERSION=1.14
55
pushd %BUILD_FOLDER%
66
copy /y WeatherStation.ino.bin ws-firmware-%VERSION%.bin
77
copy /y WeatherStation.ino.elf ws-firmware-%VERSION%.elf
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0xd7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0xe2

0 commit comments

Comments
 (0)