Compare commits
6 Commits
e89bb1d547
...
v1.4.5
Author | SHA1 | Date | |
---|---|---|---|
43719aac41 | |||
16d0079f7a | |||
48b9bf7076 | |||
b6bd4cb9ad | |||
f25789d703 | |||
|
65d8cd675f |
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,5 +1,18 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.4.5] - 2025-03-25
|
||||||
|
### Changed
|
||||||
|
- update platformio.ini for version v1.4.5
|
||||||
|
- Merge branch 'testing'
|
||||||
|
- remove unused request_topic subscription and reduce MQTT task stack size
|
||||||
|
- Merge pull request #26 from tugsi/main
|
||||||
|
- rename report_topic to topic and update MQTT subscription logic, switched publish topic to request
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- increase MQTT buffer size and adjust task stack size
|
||||||
|
- Fix BufferSize for larger JSONs from X-Series
|
||||||
|
|
||||||
|
|
||||||
## [1.4.4] - 2025-03-23
|
## [1.4.4] - 2025-03-23
|
||||||
### Added
|
### Added
|
||||||
- add error handling for missing vendor IDs in filament data
|
- add error handling for missing vendor IDs in filament data
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.4.4"
|
version = "1.4.5"
|
||||||
to_old_version = "1.4.0"
|
to_old_version = "1.4.0"
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@@ -624,7 +624,7 @@ bool setupMqtt() {
|
|||||||
if (client.connect(clientId.c_str(), bambu_username, bambu_accesscode))
|
if (client.connect(clientId.c_str(), bambu_username, bambu_accesscode))
|
||||||
{
|
{
|
||||||
client.setCallback(mqtt_callback);
|
client.setCallback(mqtt_callback);
|
||||||
client.setBufferSize(10240);
|
client.setBufferSize(15488);
|
||||||
client.subscribe((String(topic) + "/report").c_str());
|
client.subscribe((String(topic) + "/report").c_str());
|
||||||
Serial.println("MQTT-Client initialisiert");
|
Serial.println("MQTT-Client initialisiert");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user