Compare commits
3 Commits
v2.0.0-bet
...
recyclingf
Author | SHA1 | Date | |
---|---|---|---|
bc51956793 | |||
5666a58da2 | |||
a35f15eca5 |
@@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# 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
|
## [2.0.0-beta4] - 2025-08-29
|
||||||
### Changed
|
### Changed
|
||||||
- update platformio.ini for beta version v2.0.0-beta4
|
- update platformio.ini for beta version v2.0.0-beta4
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "2.0.0-beta4"
|
version = "2.0.0-beta5"
|
||||||
to_old_version = "1.5.10"
|
to_old_version = "1.5.10"
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@@ -59,6 +59,7 @@ void setup() {
|
|||||||
|
|
||||||
// Scale
|
// Scale
|
||||||
start_scale(touchSensorConnected);
|
start_scale(touchSensorConnected);
|
||||||
|
scale.tare();
|
||||||
|
|
||||||
// WDT initialisieren mit 10 Sekunden Timeout
|
// WDT initialisieren mit 10 Sekunden Timeout
|
||||||
bool panic = true; // Wenn true, löst ein WDT-Timeout einen System-Panik aus
|
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);
|
scale.set_scale(calibrationValue);
|
||||||
vTaskDelay(pdMS_TO_TICKS(5000));
|
//vTaskDelay(pdMS_TO_TICKS(5000));
|
||||||
scale.tare();
|
//scale.tare();
|
||||||
|
|
||||||
// Display Gewicht
|
// Display Gewicht
|
||||||
oledShowWeight(0);
|
oledShowWeight(0);
|
||||||
|
Reference in New Issue
Block a user