Compare commits
6 Commits
b1f7923770
...
v1.5.3
Author | SHA1 | Date | |
---|---|---|---|
2e19bccfa9 | |||
859e89431e | |||
6dc26ca51f | |||
0becae7ed6 | |||
3d31833f50 | |||
599cc47443 |
26
CHANGELOG.md
26
CHANGELOG.md
@@ -1,5 +1,31 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.5.3] - 2025-04-25
|
||||||
|
### Changed
|
||||||
|
- update platformio.ini for version v1.5.3
|
||||||
|
- Affiliate Links
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- update spool weight conditionally based on NFC ID
|
||||||
|
|
||||||
|
|
||||||
|
## [1.5.2] - 2025-04-23
|
||||||
|
### Added
|
||||||
|
- implement multi-color filament display and styles for dropdown options
|
||||||
|
- add remaining weight logging for PUT requests and improve error reporting in sendToApi function
|
||||||
|
- add remaining weight logging and display after successful spool update
|
||||||
|
- add weight field to update payload in updateSpoolTagId function
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- update platformio.ini for version v1.5.2
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- update weight field in update payload to only include values greater than 10
|
||||||
|
- increase stack size for sendToApi task to improve stability
|
||||||
|
- adjust tare weight tolerance to ignore deviations of 2g
|
||||||
|
- improve weight stability check before sending to API
|
||||||
|
|
||||||
|
|
||||||
## [1.5.1] - 2025-03-30
|
## [1.5.1] - 2025-03-30
|
||||||
### Changed
|
### Changed
|
||||||
- update version to 1.5.1 and improve OTA update handling with task management
|
- update version to 1.5.1 and improve OTA update handling with task management
|
||||||
|
@@ -54,7 +54,7 @@ Discord Server: [https://discord.gg/my7Gvaxj2v](https://discord.gg/my7Gvaxj2v)
|
|||||||
|
|
||||||
## Hardware-Anforderungen
|
## Hardware-Anforderungen
|
||||||
|
|
||||||
### Komponenten
|
### Komponenten (Affiliate Links)
|
||||||
- **ESP32 Development Board:** Any ESP32 variant.
|
- **ESP32 Development Board:** Any ESP32 variant.
|
||||||
[Amazon Link](https://amzn.to/3FHea6D)
|
[Amazon Link](https://amzn.to/3FHea6D)
|
||||||
- **HX711 5kg Load Cell Amplifier:** For weight measurement.
|
- **HX711 5kg Load Cell Amplifier:** For weight measurement.
|
||||||
|
@@ -58,7 +58,7 @@ Discord Server: [https://discord.gg/my7Gvaxj2v](https://discord.gg/my7Gvaxj2v)
|
|||||||
|
|
||||||
## Hardware Requirements
|
## Hardware Requirements
|
||||||
|
|
||||||
### Components
|
### Components (Affiliate Links)
|
||||||
- **ESP32 Development Board:** Any ESP32 variant.
|
- **ESP32 Development Board:** Any ESP32 variant.
|
||||||
[Amazon Link](https://amzn.to/3FHea6D)
|
[Amazon Link](https://amzn.to/3FHea6D)
|
||||||
- **HX711 5kg Load Cell Amplifier:** For weight measurement.
|
- **HX711 5kg Load Cell Amplifier:** For weight measurement.
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.5.1"
|
version = "1.5.3"
|
||||||
to_old_version = "1.5.0"
|
to_old_version = "1.5.0"
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@@ -167,7 +167,6 @@ bool updateSpoolTagId(String uidString, const char* payload) {
|
|||||||
// Update Payload erstellen
|
// Update Payload erstellen
|
||||||
JsonDocument updateDoc;
|
JsonDocument updateDoc;
|
||||||
updateDoc["extra"]["nfc_id"] = "\""+uidString+"\"";
|
updateDoc["extra"]["nfc_id"] = "\""+uidString+"\"";
|
||||||
if (weight > 10) updateDoc["weight"] = weight;
|
|
||||||
|
|
||||||
String updatePayload;
|
String updatePayload;
|
||||||
serializeJson(updateDoc, updatePayload);
|
serializeJson(updateDoc, updatePayload);
|
||||||
@@ -195,6 +194,9 @@ bool updateSpoolTagId(String uidString, const char* payload) {
|
|||||||
|
|
||||||
updateDoc.clear();
|
updateDoc.clear();
|
||||||
|
|
||||||
|
// Update Spool weight
|
||||||
|
if (weight > 10) updateSpoolWeight(doc["sm_id"].as<String>(), weight);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user