Compare commits
9 Commits
301109c37b
...
v2.0.6-bet
Author | SHA1 | Date | |
---|---|---|---|
6bb4384852 | |||
61174273fe | |||
e604231139 | |||
e0d641c817 | |||
40fdb667fa | |||
8f6ecb350f | |||
16887f5248 | |||
a7b06c9b97 | |||
666c929483 |
20
CHANGELOG.md
20
CHANGELOG.md
@@ -1,5 +1,25 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [2.0.6-beta1] - 2025-09-03
|
||||||
|
### Fixed
|
||||||
|
- prevent weight display during NFC write operations
|
||||||
|
|
||||||
|
|
||||||
|
## [2.0.6] - 2025-09-03
|
||||||
|
### Fixed
|
||||||
|
- correct progress bar message and update tare function description
|
||||||
|
|
||||||
|
|
||||||
|
## [2.0.5] - 2025-09-03
|
||||||
|
### Changed
|
||||||
|
- adjust auto tare counter threshold and reposition tare check in scale loop
|
||||||
|
- improve auto tare logic and reset conditions in scale handling
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- update progress bar message from 'Tare scale' to 'Searching scale'
|
||||||
|
- Scale tare function after boot
|
||||||
|
|
||||||
|
|
||||||
## [2.0.4-beta2] - 2025-09-03
|
## [2.0.4-beta2] - 2025-09-03
|
||||||
### Changed
|
### Changed
|
||||||
- adjust auto tare counter threshold and reposition tare check in scale loop
|
- adjust auto tare counter threshold and reposition tare check in scale loop
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "2.0.4-beta2"
|
version = "2.0.6-beta1"
|
||||||
to_old_version = "1.5.10"
|
to_old_version = "1.5.10"
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@@ -135,7 +135,7 @@ void loop() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Wenn Bambu auto set Spool aktiv
|
// Wenn Bambu auto set Spool aktiv
|
||||||
if (bambuCredentials.autosend_enable && autoSetToBambuSpoolId > 0)
|
if (bambuCredentials.autosend_enable && autoSetToBambuSpoolId > 0 && !nfcWriteInProgress)
|
||||||
{
|
{
|
||||||
if (!bambuDisabled && !bambu_connected)
|
if (!bambuDisabled && !bambu_connected)
|
||||||
{
|
{
|
||||||
@@ -154,9 +154,11 @@ void loop() {
|
|||||||
{
|
{
|
||||||
autoSetToBambuSpoolId = 0;
|
autoSetToBambuSpoolId = 0;
|
||||||
autoAmsCounter = 0;
|
autoAmsCounter = 0;
|
||||||
|
if (!nfcWriteInProgress) {
|
||||||
oledShowWeight(weight);
|
oledShowWeight(weight);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
autoAmsCounter = 0;
|
autoAmsCounter = 0;
|
||||||
@@ -176,7 +178,8 @@ void loop() {
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Ausgabe der Waage auf Display
|
// Ausgabe der Waage auf Display
|
||||||
if(pauseMainTask == 0)
|
// Block weight display during NFC write operations
|
||||||
|
if(pauseMainTask == 0 && !nfcWriteInProgress)
|
||||||
{
|
{
|
||||||
// Use filtered weight for smooth display, but still check API weight for significant changes
|
// Use filtered weight for smooth display, but still check API weight for significant changes
|
||||||
int16_t displayWeight = getFilteredDisplayWeight();
|
int16_t displayWeight = getFilteredDisplayWeight();
|
||||||
|
@@ -242,7 +242,7 @@ void start_scale(bool touchSensorConnected) {
|
|||||||
|
|
||||||
scale.begin(LOADCELL_DOUT_PIN, LOADCELL_SCK_PIN);
|
scale.begin(LOADCELL_DOUT_PIN, LOADCELL_SCK_PIN);
|
||||||
|
|
||||||
oledShowProgressBar(6, 7, DISPLAY_BOOT_TEXT, "Tare scale");
|
oledShowProgressBar(6, 7, DISPLAY_BOOT_TEXT, "Serching scale");
|
||||||
for (uint16_t i = 0; i < 3000; i++) {
|
for (uint16_t i = 0; i < 3000; i++) {
|
||||||
yield();
|
yield();
|
||||||
vTaskDelay(pdMS_TO_TICKS(1));
|
vTaskDelay(pdMS_TO_TICKS(1));
|
||||||
|
Reference in New Issue
Block a user