Skip to content

Commit 7860308

Browse files
committed
release version 1.01
1 parent d04005e commit 7860308

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

arduino/WeatherStation/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Changelog
2+
## 1.01
3+
## Fixes
4+
- Fixed limit on list of scanned WiFi networks
5+
- Updated Github certificate for firmware download
6+
- Firmware update does not verify certificate by default
7+
- Reliable web server start after regional settings update
28
## 1.00
39
## Features
410
- Restructured settings UI

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.00"
4+
#define VERSION "1.01"
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 : 939468 - code in flash (default or ICACHE_FLASH_ATTR)
6-
IRAM : 29521 / 32768 - code in IRAM (IRAM_ATTR, ISRs...)
5+
IROM : 940644 - code in flash (default or ICACHE_FLASH_ATTR)
6+
IRAM : 29545 / 32768 - code in IRAM (IRAM_ATTR, ISRs...)
77
DATA : 1712 ) - initialized variables (global, static) in RAM/HEAP
8-
RODATA : 7560 ) / 81920 - constants (global, static) in RAM/HEAP
9-
BSS : 27936 ) - zeroed variables (global, static) in RAM/HEAP
10-
Sketch uses 978261 bytes (93%) of program storage space. Maximum is 1044464 bytes.
11-
Global variables use 37208 bytes (45%) of dynamic memory, leaving 44712 bytes for local variables. Maximum is 81920 bytes.
8+
RODATA : 7532 ) / 81920 - constants (global, static) in RAM/HEAP
9+
BSS : 27928 ) - zeroed variables (global, static) in RAM/HEAP
10+
Sketch uses 979433 bytes (93%) of program storage space. Maximum is 1044464 bytes.
11+
Global variables use 37172 bytes (45%) of dynamic memory, leaving 44748 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.00.0",
3+
"version": "1.01.0",
44
"private": true,
55
"dependencies": {
66
"@date-io/date-fns": "^1.3.13",

0 commit comments

Comments
 (0)