File tree 5 files changed +12
-7
lines changed
5 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## 1.15
3
+ ### Fixes
4
+ - Fixed updating data in the night mode
5
+ - Improved writing stability when weak WiFi connection
6
+
2
7
## 1.14
3
8
### Fixes
4
9
- Improved wifi settings persistance to allow WiFi network name with slash char
Original file line number Diff line number Diff line change 1
1
#ifndef VERSION_H
2
2
#define VERSION_H
3
3
4
- #define VERSION "1.14 "
4
+ #define VERSION "1.15 "
5
5
6
6
const char * getLongVersion ();
7
7
Original file line number Diff line number Diff line change 2
2
Board: Lolin D1 mini (clone) (ESP-12E Module)
3
3
Executable segment sizes:
4
4
ICACHE : 32768 - flash instruction cache
5
- IROM : 956556 - code in flash (default or ICACHE_FLASH_ATTR)
5
+ IROM : 957188 - code in flash (default or ICACHE_FLASH_ATTR)
6
6
IRAM : 29565 / 32768 - code in IRAM (IRAM_ATTR, ISRs...)
7
7
DATA : 1716 ) - initialized variables (global, static) in RAM/HEAP
8
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.
9
+ BSS : 28040 ) - zeroed variables (global, static) in RAM/HEAP
10
+ Sketch uses 996609 bytes (95%) of program storage space. Maximum is 1044464 bytes.
11
+ Global variables use 37896 bytes (46%) of dynamic memory, leaving 44024 bytes for local variables. Maximum is 81920 bytes.
12
12
*/
13
13
14
14
#include < Arduino.h>
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " weather-station" ,
3
- "version" : " 1.1.4 " ,
3
+ "version" : " 1.1.5 " ,
4
4
"private" : true ,
5
5
"dependencies" : {
6
6
"@date-io/date-fns" : " ^1.3.13" ,
Original file line number Diff line number Diff line change 1
1
setlocal
2
2
set BUILD_FOLDER = c:\tmp\_ArduinoOutput\d1mini\weatherstation
3
3
rem grep "#define VERSION.*[0-9]" ..\Version.h | sed -n "s/.*VERSION.*\([0-9]\.[0-9]\+.*\)""/\1/p"
4
- set VERSION = 1.14
4
+ set VERSION = 1.15
5
5
pushd %BUILD_FOLDER%
6
6
copy /y WeatherStation.ino.bin ws-firmware-%VERSION% .bin
7
7
copy /y WeatherStation.ino.elf ws-firmware-%VERSION% .elf
You can’t perform that action at this time.
0 commit comments