Compare commits
	
		
			5 Commits
		
	
	
		
			7f6bce1699
			...
			recyclingf
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| bc51956793 | |||
| 5666a58da2 | |||
| a35f15eca5 | |||
| f28b34e427 | |||
| 9215560558 | 
							
								
								
									
										17
									
								
								CHANGELOG.md
									
									
									
									
									
								
							
							
						
						
									
										17
									
								
								CHANGELOG.md
									
									
									
									
									
								
							@@ -1,5 +1,22 @@
 | 
			
		||||
# Changelog
 | 
			
		||||
 | 
			
		||||
## [2.0.0-beta5] - 2025-08-30
 | 
			
		||||
### Changed
 | 
			
		||||
- update platformio.ini for beta version v2.0.0-beta5
 | 
			
		||||
 | 
			
		||||
### Fixed
 | 
			
		||||
- call scale.tare() in setup after starting scale
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## [2.0.0-beta4] - 2025-08-29
 | 
			
		||||
### Changed
 | 
			
		||||
- update platformio.ini for beta version v2.0.0-beta4
 | 
			
		||||
 | 
			
		||||
### Fixed
 | 
			
		||||
- update createVendor function to use external_id as comment instead of static text
 | 
			
		||||
- update to_old_version in platformio.ini to reflect correct previous version
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## [2.0.0-beta3] - 2025-08-29
 | 
			
		||||
### Changed
 | 
			
		||||
- update platformio.ini for beta version v2.0.0-beta3
 | 
			
		||||
 
 | 
			
		||||
@@ -9,7 +9,7 @@
 | 
			
		||||
; https://docs.platformio.org/page/projectconf.html
 | 
			
		||||
 | 
			
		||||
[common]
 | 
			
		||||
version = "2.0.0-beta3"
 | 
			
		||||
version = "2.0.0-beta5"
 | 
			
		||||
to_old_version = "1.5.10"
 | 
			
		||||
 | 
			
		||||
##
 | 
			
		||||
 
 | 
			
		||||
@@ -59,6 +59,7 @@ void setup() {
 | 
			
		||||
 | 
			
		||||
  // Scale
 | 
			
		||||
  start_scale(touchSensorConnected);
 | 
			
		||||
  scale.tare();
 | 
			
		||||
 | 
			
		||||
  // WDT initialisieren mit 10 Sekunden Timeout
 | 
			
		||||
  bool panic = true; // Wenn true, löst ein WDT-Timeout einen System-Panik aus
 | 
			
		||||
 
 | 
			
		||||
@@ -122,8 +122,8 @@ void start_scale(bool touchSensorConnected) {
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  scale.set_scale(calibrationValue);
 | 
			
		||||
  vTaskDelay(pdMS_TO_TICKS(5000));
 | 
			
		||||
  scale.tare();
 | 
			
		||||
  //vTaskDelay(pdMS_TO_TICKS(5000));
 | 
			
		||||
  //scale.tare();
 | 
			
		||||
 | 
			
		||||
  // Display Gewicht
 | 
			
		||||
  oledShowWeight(0);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user