Compare commits
	
		
			6 Commits
		
	
	
		
			16887f5248
			...
			v2.0.6-bet
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 6bb4384852 | |||
| 61174273fe | |||
| e604231139 | |||
| e0d641c817 | |||
| 40fdb667fa | |||
| 8f6ecb350f | 
							
								
								
									
										13
									
								
								CHANGELOG.md
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								CHANGELOG.md
									
									
									
									
									
								
							@@ -1,12 +1,23 @@
 | 
			
		||||
# 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" fix: Scale tare function after boot
 | 
			
		||||
- update progress bar message from 'Tare scale' to 'Searching scale' 
 | 
			
		||||
- Scale tare function after boot
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## [2.0.4-beta2] - 2025-09-03
 | 
			
		||||
 
 | 
			
		||||
@@ -9,7 +9,7 @@
 | 
			
		||||
; https://docs.platformio.org/page/projectconf.html
 | 
			
		||||
 | 
			
		||||
[common]
 | 
			
		||||
version = "2.0.5"
 | 
			
		||||
version = "2.0.6-beta1"
 | 
			
		||||
to_old_version = "1.5.10"
 | 
			
		||||
 | 
			
		||||
##
 | 
			
		||||
 
 | 
			
		||||
@@ -135,7 +135,7 @@ void loop() {
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // Wenn Bambu auto set Spool aktiv
 | 
			
		||||
  if (bambuCredentials.autosend_enable && autoSetToBambuSpoolId > 0) 
 | 
			
		||||
  if (bambuCredentials.autosend_enable && autoSetToBambuSpoolId > 0 && !nfcWriteInProgress) 
 | 
			
		||||
  {
 | 
			
		||||
    if (!bambuDisabled && !bambu_connected) 
 | 
			
		||||
    {
 | 
			
		||||
@@ -154,7 +154,9 @@ void loop() {
 | 
			
		||||
        {
 | 
			
		||||
          autoSetToBambuSpoolId = 0;
 | 
			
		||||
          autoAmsCounter = 0;
 | 
			
		||||
          oledShowWeight(weight);
 | 
			
		||||
          if (!nfcWriteInProgress) {
 | 
			
		||||
            oledShowWeight(weight);
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
      else
 | 
			
		||||
@@ -176,7 +178,8 @@ void loop() {
 | 
			
		||||
  else 
 | 
			
		||||
  {
 | 
			
		||||
    // 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
 | 
			
		||||
      int16_t displayWeight = getFilteredDisplayWeight();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user