Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,14 @@ The `.yaml` format structure is as follows:

* Root [dict]
* `Errors` [list of dict]: Specific error codes
* `printers` (optional) [list of string]: same as root-level printer filter
* `code` [string]: Error code in the format `XXYZZ`
* Leave `XX` as `XX`, the code applies to multiple printers.
* For example `XX101`
* `printers` (optional) [list of string]: same as root-level printer filter
* `title` [string]: Error message title
* `text` [string]: Error message string
* `id` [string]: Error identifier used for referencing the error in the code
* For example `BED_MINTEMP_ERROR`
* `gui_layout` [string]: For warning or error
* For example `"warning_dialog"` or `"red_screen"`
* `approved` [bool]: Not really good for anything
11 changes: 10 additions & 1 deletion yaml/mmu-error-codes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,6 @@ Errors:
- code: "04306"
title: "MMU MCU ERROR"
text: "MMU detected a power-related issue. Check the wiring and connectors. If the issue persists, contact support."
text_short: "More details online."
action: [ResetMMU]
id: "MCU_POWER_ERROR"
approved: true
Expand Down Expand Up @@ -447,6 +446,16 @@ Errors:
type: USER_ACTION
gui_layout: "mmu_dialog"

- code: "04508"
title: "FILAMENT CHANGE"
text: "Change filament. Eject filament then load new filament into the MMU."
text_short: "M600 Filament Change. Load a new filament or eject the old one."
action: [Eject,Load]
id: "FILAMENT_CHANGE"
approved: true
type: USER_ACTION
gui_layout: "mmu_dialog"

- code: "04900"
title: "UNKNOWN ERROR"
text: "Unexpected error occurred."
Expand Down