Compare commits
6 Commits
v1.5.2
...
6c9f290bac
Author | SHA1 | Date | |
---|---|---|---|
6c9f290bac | |||
2920159f32 | |||
2e19bccfa9 | |||
859e89431e | |||
6dc26ca51f | |||
0becae7ed6 |
@@ -1,5 +1,14 @@
|
|||||||
# 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
|
## [1.5.2] - 2025-04-23
|
||||||
### Added
|
### Added
|
||||||
- implement multi-color filament display and styles for dropdown options
|
- implement multi-color filament display and styles for dropdown options
|
||||||
|
@@ -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.
|
||||||
@@ -90,6 +90,12 @@ Discord Server: [https://discord.gg/my7Gvaxj2v](https://discord.gg/my7Gvaxj2v)
|
|||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
*Die Wägezelle wird bei den meisten HX711 Modulen folgendermaßen verkabelt:
|
||||||
|
E+ rot
|
||||||
|
E- schwarz
|
||||||
|
A- weiß
|
||||||
|
A+ grün*
|
||||||
|
|
||||||
## Software-Abhängigkeiten
|
## Software-Abhängigkeiten
|
||||||
|
|
||||||
### ESP32-Bibliotheken
|
### ESP32-Bibliotheken
|
||||||
|
@@ -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.
|
||||||
@@ -94,6 +94,12 @@ Discord Server: [https://discord.gg/my7Gvaxj2v](https://discord.gg/my7Gvaxj2v)
|
|||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
*The load cell is connected to most HX711 modules as follows:
|
||||||
|
E+ red
|
||||||
|
E- black
|
||||||
|
A- white
|
||||||
|
A+ green*
|
||||||
|
|
||||||
## Software Dependencies
|
## Software Dependencies
|
||||||
|
|
||||||
### ESP32 Libraries
|
### ESP32 Libraries
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.5.2"
|
version = "1.5.3"
|
||||||
to_old_version = "1.5.0"
|
to_old_version = "1.5.0"
|
||||||
|
|
||||||
##
|
##
|
||||||
@@ -18,6 +18,7 @@ platform = espressif32
|
|||||||
board = esp32dev
|
board = esp32dev
|
||||||
framework = arduino
|
framework = arduino
|
||||||
monitor_speed = 115200
|
monitor_speed = 115200
|
||||||
|
#monitor_port = /dev/cu.usbmodem01
|
||||||
|
|
||||||
lib_deps =
|
lib_deps =
|
||||||
tzapu/WiFiManager @ ^2.0.17
|
tzapu/WiFiManager @ ^2.0.17
|
||||||
|
@@ -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