Compare commits
	
		
			4 Commits
		
	
	
		
			v2.0.2
			...
			100328b1d6
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 100328b1d6 | |||
| 9ec5bca652 | |||
| 1dba2b2f23 | |||
| cca0bd9dbe | 
@@ -1,5 +1,14 @@
 | 
			
		||||
# Changelog
 | 
			
		||||
 | 
			
		||||
## [2.0.2-beta1] - 2025-09-02
 | 
			
		||||
### Changed
 | 
			
		||||
- update platformio.ini for beta version v2.0.2-beta1
 | 
			
		||||
 | 
			
		||||
### Fixed
 | 
			
		||||
- reset weight counter logic and update spool ID in loop function
 | 
			
		||||
- reduce delay in start_scale function and reset weight after tare
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## [2.0.2] - 2025-09-01
 | 
			
		||||
### Added
 | 
			
		||||
- add weight check and update spool weight in writeJsonToTag function
 | 
			
		||||
 
 | 
			
		||||
@@ -9,7 +9,7 @@
 | 
			
		||||
; https://docs.platformio.org/page/projectconf.html
 | 
			
		||||
 | 
			
		||||
[common]
 | 
			
		||||
version = "2.0.2"
 | 
			
		||||
version = "2.0.2-beta1"
 | 
			
		||||
to_old_version = "1.5.10"
 | 
			
		||||
 | 
			
		||||
##
 | 
			
		||||
 
 | 
			
		||||
@@ -220,7 +220,6 @@ void loop() {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // reset weight counter after writing tag
 | 
			
		||||
    // TBD: what exactly is the logic behind this?
 | 
			
		||||
    if (currentMillis - lastWeightReadTime >= weightReadInterval && nfcReaderState != NFC_IDLE && nfcReaderState != NFC_READ_SUCCESS)
 | 
			
		||||
    {
 | 
			
		||||
      weigthCouterToApi = 0;
 | 
			
		||||
@@ -272,7 +271,7 @@ void loop() {
 | 
			
		||||
 | 
			
		||||
    if(octoEnabled && sendOctoUpdate && spoolmanApiState == API_IDLE)
 | 
			
		||||
    {
 | 
			
		||||
      updateSpoolOcto(autoSetToBambuSpoolId);
 | 
			
		||||
      updateSpoolOcto(activeSpoolId.toInt());
 | 
			
		||||
      sendOctoUpdate = false;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
@@ -257,8 +257,10 @@ void start_scale(bool touchSensorConnected) {
 | 
			
		||||
  // Display Gewicht
 | 
			
		||||
  oledShowWeight(0);
 | 
			
		||||
 | 
			
		||||
  vTaskDelay(1000 / portTICK_PERIOD_MS);
 | 
			
		||||
  vTaskDelay(500 / portTICK_PERIOD_MS);
 | 
			
		||||
  scale.tare();
 | 
			
		||||
  vTaskDelay(500 / portTICK_PERIOD_MS);
 | 
			
		||||
  weight = 0;
 | 
			
		||||
 | 
			
		||||
  Serial.println("starte Scale Task");
 | 
			
		||||
  BaseType_t result = xTaskCreatePinnedToCore(
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user