Skip to content

Commit

Permalink
release version 0.58-rc7
Browse files Browse the repository at this point in the history
  • Loading branch information
vlastahajek committed Feb 27, 2022
1 parent 8637035 commit 6d398cd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions arduino/WeatherStation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
- Sensirion SHTC3 temperature and humidity sensor support
- Autocalibration of DHT11
## Fixes
- Fixed initial WiFi settings delay
- Improved initial WiFi settings behavior
- Fixed HTTP server response on cached URL

## 0.58 rc6
## Features
- Dual color OLED support
Expand Down
2 changes: 1 addition & 1 deletion arduino/WeatherStation/Version.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef VERSION_H
#define VERSION_H

#define VERSION "0.58-rc6"
#define VERSION "0.58-rc7"

const char *getLongVersion();

Expand Down
18 changes: 9 additions & 9 deletions arduino/WeatherStation/WeatherStation.ino
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/*
Board: NodeMCU 1.0 (ESP-12E Module)
Board: Lolin D1 mini (clone) (ESP-12E Module)
Executable segment sizes:
ICACHE : 32768 - flash instruction cache
IROM : 941024 - code in flash (default or ICACHE_FLASH_ATTR)
IRAM : 29649 / 32768 - code in IRAM (IRAM_ATTR, ISRs...)
DATA : 1712 ) - initialized variables (global, static) in RAM/HEAP
RODATA : 8072 ) / 81920 - constants (global, static) in RAM/HEAP
BSS : 27960 ) - zeroed variables (global, static) in RAM/HEAP
Sketch uses 980457 bytes (93%) of program storage space. Maximum is 1044464 bytes.
Global variables use 37744 bytes (46%) of dynamic memory, leaving 44176 bytes for local variables. Maximum is 81920 bytes.
ICACHE : 32768 - flash instruction cache
IROM : 936260 - code in flash (default or ICACHE_FLASH_ATTR)
IRAM : 29521 / 32768 - code in IRAM (IRAM_ATTR, ISRs...)
DATA : 1712 ) - initialized variables (global, static) in RAM/HEAP
RODATA : 7596 ) / 81920 - constants (global, static) in RAM/HEAP
BSS : 27920 ) - zeroed variables (global, static) in RAM/HEAP
Sketch uses 975089 bytes (93%) of program storage space. Maximum is 1044464 bytes.
Global variables use 37228 bytes (45%) of dynamic memory, leaving 44692 bytes for local variables. Maximum is 81920 bytes.
*/

#include <Arduino.h>
Expand Down

0 comments on commit 6d398cd

Please sign in to comment.