feat: push_status report for Bambu MQTT v2

This commit is contained in:
2026-08-31 13:41:56 +00:00
parent 20ecc1e8bd
commit 1b23c58eb6
46 changed files with 1060 additions and 20 deletions
@@ -0,0 +1,29 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://git.octoturge.com/Continuum/continuum-schemas/raw/branch/main/schemas/bambulab/v2/common/device/extruder_item.schema.json",
"title": "DeviceExtruderItem",
"description": "Detailed info about specific Extruder",
"type": "object",
"properties": {
"filam_bak": {
"type": "array",
"items": { "type": "string" }
},
"hnow": { "type": "integer" },
"hpre": { "type": "integer" },
"htar": { "type": "integer" },
"id": { "type": "integer" },
"info": { "type": "integer" },
"snow": { "type": "integer" },
"spre": { "type": "integer" },
"star": { "type": "integer" },
"stat": { "type": "integer" },
"temp": { "type": "integer" }
},
"required": [
"filam_bak", "hnow", "hpre",
"htar", "id", "info",
"snow", "spre", "star",
"stat", "temp"
]
}