Compare commits
4 Commits
a16c05287e
...
v1.3.92
Author | SHA1 | Date | |
---|---|---|---|
5c5846c52c | |||
517fa37a3d | |||
aaa7a6ee9c | |||
a0b8639488 |
13
CHANGELOG.md
13
CHANGELOG.md
@ -1,5 +1,18 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.3.92] - 2025-02-24
|
||||||
|
### Changed
|
||||||
|
- update webpages for version v1.3.92
|
||||||
|
- remove commented-out code in setBambuSpool function
|
||||||
|
- update installation instructions and formatting in README files
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- configure CPU frequency settings in setup function only for testing
|
||||||
|
- update comment to clarify NVS reading process
|
||||||
|
- adjust weight display logic to handle cases for weight less than 2
|
||||||
|
- update weight display logic to handle negative and specific weight cases
|
||||||
|
|
||||||
|
|
||||||
## [1.3.91] - 2025-02-23
|
## [1.3.91] - 2025-02-23
|
||||||
### Added
|
### Added
|
||||||
- update GitHub Actions workflow for FTP firmware upload with improved credential checks
|
- update GitHub Actions workflow for FTP firmware upload with improved credential checks
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.3.91"
|
version = "1.3.92"
|
||||||
##
|
##
|
||||||
[env:esp32dev]
|
[env:esp32dev]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
|
@ -15,10 +15,17 @@
|
|||||||
#include "esp_task_wdt.h"
|
#include "esp_task_wdt.h"
|
||||||
#include "commonFS.h"
|
#include "commonFS.h"
|
||||||
|
|
||||||
|
#include "soc/rtc.h"
|
||||||
|
|
||||||
// ##### SETUP #####
|
// ##### SETUP #####
|
||||||
void setup() {
|
void setup() {
|
||||||
Serial.begin(115200);
|
Serial.begin(115200);
|
||||||
|
|
||||||
|
rtc_cpu_freq_config_t config;
|
||||||
|
rtc_clk_cpu_freq_get_config(&config);
|
||||||
|
rtc_clk_cpu_freq_to_config(RTC_CPU_FREQ_80M, &config);
|
||||||
|
rtc_clk_cpu_freq_set_config_fast(&config);
|
||||||
|
|
||||||
uint64_t chipid;
|
uint64_t chipid;
|
||||||
|
|
||||||
chipid = ESP.getEfuseMac(); //The chip ID is essentially its MAC address(length: 6 bytes).
|
chipid = ESP.getEfuseMac(); //The chip ID is essentially its MAC address(length: 6 bytes).
|
||||||
|
@ -55,7 +55,7 @@ uint8_t start_scale() {
|
|||||||
Serial.println("Prüfe Calibration Value");
|
Serial.println("Prüfe Calibration Value");
|
||||||
long calibrationValue;
|
long calibrationValue;
|
||||||
|
|
||||||
// NVS
|
// NVS lesen
|
||||||
preferences.begin(NVS_NAMESPACE, true); // true = readonly
|
preferences.begin(NVS_NAMESPACE, true); // true = readonly
|
||||||
calibrationValue = preferences.getLong(NVS_KEY_CALIBRATION, defaultScaleCalibrationValue);
|
calibrationValue = preferences.getLong(NVS_KEY_CALIBRATION, defaultScaleCalibrationValue);
|
||||||
preferences.end();
|
preferences.end();
|
||||||
|
Reference in New Issue
Block a user