mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-10 14:02:47 +00:00
Add PrintConfig proto schema and UI layout
This commit is contained in:
144
src/PrintConfigs/config_metadata.proto
Normal file
144
src/PrintConfigs/config_metadata.proto
Normal file
@@ -0,0 +1,144 @@
|
||||
// OrcaSlicer Print Config - Custom Field Options
|
||||
// This file defines the metadata annotations used on all config setting fields.
|
||||
// These annotations are read by the codegen tool to produce:
|
||||
// - PrintConfigDef_generated.cpp (init_fff_params replacement)
|
||||
// - PrintConfig_generated.hpp (struct definitions)
|
||||
// - Preset_options_generated.cpp (preset option lists)
|
||||
// - Invalidation_generated.cpp (invalidation map)
|
||||
// - OptionKeys_generated.cpp (extruder/filament/variant key lists)
|
||||
|
||||
syntax = "proto3";
|
||||
|
||||
import "google/protobuf/descriptor.proto";
|
||||
|
||||
package orca;
|
||||
|
||||
// --- Enums for annotations ---
|
||||
|
||||
enum ConfigMode {
|
||||
MODE_SIMPLE = 0;
|
||||
MODE_ADVANCED = 1;
|
||||
MODE_DEVELOP = 2;
|
||||
}
|
||||
|
||||
enum PresetType {
|
||||
PRESET_PRINT = 0;
|
||||
PRESET_FILAMENT = 1;
|
||||
PRESET_PRINTER = 2;
|
||||
}
|
||||
|
||||
enum InvalidationStep {
|
||||
STEP_GCODE_EXPORT = 0;
|
||||
STEP_SKIRT_BRIM = 1;
|
||||
STEP_WIPE_TOWER = 2;
|
||||
STEP_SLICE = 3;
|
||||
STEP_PERIMETERS = 4;
|
||||
STEP_INFILL = 5;
|
||||
STEP_SUPPORT = 6;
|
||||
STEP_NONE = 7;
|
||||
}
|
||||
|
||||
enum OptionListMembership {
|
||||
LIST_NONE = 0;
|
||||
LIST_EXTRUDER_OPTION_KEYS = 1;
|
||||
LIST_FILAMENT_OPTION_KEYS = 2;
|
||||
LIST_VARIANT_OPTION_KEYS = 3;
|
||||
}
|
||||
|
||||
// --- Custom field options ---
|
||||
|
||||
extend google.protobuf.FieldOptions {
|
||||
// Display metadata
|
||||
string label = 50001;
|
||||
string full_label = 50002;
|
||||
string tooltip = 50003;
|
||||
string category = 50004;
|
||||
string sidetext = 50005;
|
||||
|
||||
// Numeric constraints
|
||||
double min_value = 50006;
|
||||
double max_value = 50007;
|
||||
double max_literal = 50008;
|
||||
|
||||
// UI behavior
|
||||
ConfigMode mode = 50009;
|
||||
string ratio_over = 50010;
|
||||
bool multiline = 50013;
|
||||
bool full_width = 50014;
|
||||
int32 height = 50015;
|
||||
|
||||
// Classification
|
||||
PresetType preset = 50011;
|
||||
repeated InvalidationStep invalidates = 50012;
|
||||
repeated OptionListMembership list_membership = 50018;
|
||||
|
||||
// Migration
|
||||
string legacy_name = 50016;
|
||||
|
||||
// Nullable support (for ConfigOptionFloatsNullable, etc.)
|
||||
bool is_nullable = 50017;
|
||||
|
||||
// GUI type override (e.g. "i_enum_open", "color", "f_enum_open")
|
||||
string gui_type = 50019;
|
||||
string gui_flags = 50020;
|
||||
|
||||
// Enum metadata (key map reference for C++ enum binding)
|
||||
string enum_keys_map_ref = 50021;
|
||||
|
||||
// Whether this option should not appear in CLI
|
||||
bool no_cli = 50022;
|
||||
|
||||
// ConfigOptionDef::readonly
|
||||
bool readonly = 50023;
|
||||
|
||||
// Override the auto-detected co_type (e.g. "coPercent", "coEnum")
|
||||
// Used when proto type (float, int32) is ambiguous
|
||||
string co_type_hint = 50024;
|
||||
|
||||
// Default value — constructor args only (e.g. "1.0", "5000.0, 5000.0")
|
||||
// Codegen reconstructs full C++ from co_type + this value
|
||||
string default_value = 50025;
|
||||
|
||||
// Whether a default value is present (needed because proto3 can't
|
||||
// distinguish "set to empty string" from "not set")
|
||||
bool has_default = 50028;
|
||||
|
||||
// Enum values (string keys for coEnum options)
|
||||
repeated string enum_value_entries = 50026;
|
||||
|
||||
// Enum labels (display names for enum values)
|
||||
repeated string enum_label_entries = 50027;
|
||||
|
||||
// UI layout: where this option appears in Tab.cpp
|
||||
// tab_type = "Print" | "Filament" | "Printer"
|
||||
// tab_page = page title as shown in the UI (e.g. "Quality")
|
||||
// tab_optgroup = optgroup title within that page (e.g. "Layer height")
|
||||
string tab_type = 50029;
|
||||
string tab_page = 50030;
|
||||
string tab_optgroup = 50031;
|
||||
}
|
||||
|
||||
// --- Message-level options ---
|
||||
|
||||
extend google.protobuf.MessageOptions {
|
||||
// Virtual keys: preset option keys that belong to this preset type but have
|
||||
// no ConfigOptionDef entry (printer metadata, host settings, compatibility
|
||||
// flags, filament retraction overrides, cross-preset keys, etc.).
|
||||
// The codegen emits these directly into s_Preset_*_options alongside the
|
||||
// field-derived keys, so no hand-written extender is needed in Preset.cpp.
|
||||
repeated string virtual_preset_keys = 60001;
|
||||
}
|
||||
|
||||
// --- Wrapper messages for complex types ---
|
||||
|
||||
// Represents ConfigOptionFloatOrPercent
|
||||
message FloatOrPercent {
|
||||
double value = 1;
|
||||
bool percent = 2;
|
||||
}
|
||||
|
||||
// Represents ConfigOptionPoint (Vec2d)
|
||||
message Point2D {
|
||||
double x = 1;
|
||||
double y = 2;
|
||||
}
|
||||
1744
src/PrintConfigs/generated/filament.proto
Normal file
1744
src/PrintConfigs/generated/filament.proto
Normal file
File diff suppressed because it is too large
Load Diff
6974
src/PrintConfigs/generated/print.proto
Normal file
6974
src/PrintConfigs/generated/print.proto
Normal file
File diff suppressed because it is too large
Load Diff
776
src/PrintConfigs/generated/printer.proto
Normal file
776
src/PrintConfigs/generated/printer.proto
Normal file
@@ -0,0 +1,776 @@
|
||||
// OrcaSlicer - PrinterSettings
|
||||
// Edit this file and re-run: python tools/run_codegen.py
|
||||
|
||||
syntax = "proto3";
|
||||
|
||||
import "config_metadata.proto";
|
||||
|
||||
package orca;
|
||||
|
||||
message PrinterSettings {
|
||||
|
||||
// ── Virtual keys: not in PrintConfigDef, but required in printer presets ──
|
||||
// Printer identity / bed shape (handled by Preset/PrinterConfig directly)
|
||||
option (virtual_preset_keys) = "bed_custom_model";
|
||||
option (virtual_preset_keys) = "bed_custom_texture";
|
||||
option (virtual_preset_keys) = "bed_exclude_area";
|
||||
option (virtual_preset_keys) = "bbl_use_printhost";
|
||||
option (virtual_preset_keys) = "default_print_profile";
|
||||
option (virtual_preset_keys) = "extruder_printable_area";
|
||||
option (virtual_preset_keys) = "extruder_variant_list";
|
||||
option (virtual_preset_keys) = "grab_length";
|
||||
option (virtual_preset_keys) = "head_wrap_detect_zone";
|
||||
option (virtual_preset_keys) = "inherits";
|
||||
option (virtual_preset_keys) = "physical_extruder_map";
|
||||
option (virtual_preset_keys) = "printable_area";
|
||||
option (virtual_preset_keys) = "printable_height";
|
||||
option (virtual_preset_keys) = "extruder_printable_height";
|
||||
option (virtual_preset_keys) = "printer_agent";
|
||||
option (virtual_preset_keys) = "printer_extruder_id";
|
||||
option (virtual_preset_keys) = "printer_extruder_variant";
|
||||
option (virtual_preset_keys) = "printer_model";
|
||||
option (virtual_preset_keys) = "printer_technology";
|
||||
option (virtual_preset_keys) = "printer_variant";
|
||||
option (virtual_preset_keys) = "silent_mode";
|
||||
option (virtual_preset_keys) = "support_object_skip_flush";
|
||||
// Print-host / connectivity
|
||||
option (virtual_preset_keys) = "host_type";
|
||||
option (virtual_preset_keys) = "print_host";
|
||||
option (virtual_preset_keys) = "print_host_webui";
|
||||
option (virtual_preset_keys) = "printhost_apikey";
|
||||
option (virtual_preset_keys) = "printhost_authorization_type";
|
||||
option (virtual_preset_keys) = "printhost_cafile";
|
||||
option (virtual_preset_keys) = "printhost_port";
|
||||
option (virtual_preset_keys) = "printhost_password";
|
||||
option (virtual_preset_keys) = "printhost_ssl_ignore_revoke";
|
||||
option (virtual_preset_keys) = "printhost_user";
|
||||
// Cross-preset: defined in print.proto but also saved in printer presets
|
||||
option (virtual_preset_keys) = "bed_temperature_formula";
|
||||
option (virtual_preset_keys) = "cooling_tube_length";
|
||||
option (virtual_preset_keys) = "cooling_tube_retraction";
|
||||
option (virtual_preset_keys) = "default_bed_type";
|
||||
option (virtual_preset_keys) = "default_nozzle_volume_type";
|
||||
option (virtual_preset_keys) = "emit_machine_limits_to_gcode";
|
||||
option (virtual_preset_keys) = "enable_filament_ramming";
|
||||
option (virtual_preset_keys) = "enable_long_retraction_when_cut";
|
||||
option (virtual_preset_keys) = "extra_loading_move";
|
||||
option (virtual_preset_keys) = "extruder_type";
|
||||
option (virtual_preset_keys) = "high_current_on_filament_swap";
|
||||
option (virtual_preset_keys) = "long_retractions_when_cut";
|
||||
option (virtual_preset_keys) = "machine_load_filament_time";
|
||||
option (virtual_preset_keys) = "machine_tool_change_time";
|
||||
option (virtual_preset_keys) = "machine_unload_filament_time";
|
||||
option (virtual_preset_keys) = "manual_filament_change";
|
||||
option (virtual_preset_keys) = "master_extruder_id";
|
||||
option (virtual_preset_keys) = "nozzle_flush_dataset";
|
||||
option (virtual_preset_keys) = "nozzle_height";
|
||||
option (virtual_preset_keys) = "nozzle_volume";
|
||||
option (virtual_preset_keys) = "parking_pos_retraction";
|
||||
option (virtual_preset_keys) = "preferred_orientation";
|
||||
option (virtual_preset_keys) = "purge_in_prime_tower";
|
||||
option (virtual_preset_keys) = "retract_lift_enforce";
|
||||
option (virtual_preset_keys) = "retraction_distances_when_cut";
|
||||
option (virtual_preset_keys) = "single_extruder_multi_material";
|
||||
option (virtual_preset_keys) = "thumbnails_format";
|
||||
option (virtual_preset_keys) = "tool_change_on_wipe_tower";
|
||||
option (virtual_preset_keys) = "travel_slope";
|
||||
option (virtual_preset_keys) = "upward_compatible_machine";
|
||||
option (virtual_preset_keys) = "wipe_tower_type";
|
||||
option (virtual_preset_keys) = "wrapping_detection_layers";
|
||||
option (virtual_preset_keys) = "wrapping_exclude_area";
|
||||
option (virtual_preset_keys) = "z_hop_types";
|
||||
|
||||
float extruder_clearance_height_to_rod = 1 [
|
||||
(label) = "Height to rod",
|
||||
(tooltip) = "Distance of the nozzle tip to the lower rod. Used for collision avoidance in by-object printing.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "mm",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Extruder Clearance",
|
||||
(min_value) = 0,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "40",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
float extruder_clearance_height_to_lid = 2 [
|
||||
(label) = "Height to lid",
|
||||
(tooltip) = "Distance of the nozzle tip to the lid. Used for collision avoidance in by-object printing.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "mm",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Extruder Clearance",
|
||||
(min_value) = 0,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "120",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
float extruder_clearance_radius = 3 [
|
||||
(label) = "Radius",
|
||||
(tooltip) = "Clearance radius around extruder. Used for collision avoidance in by-object printing.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "mm",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Extruder Clearance",
|
||||
(min_value) = 0,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "40",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
Point2D bed_mesh_min = 4 [
|
||||
(label) = "Bed mesh min",
|
||||
(tooltip) = "This option sets the min point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (-99999, -99999), which means there are no limits, thus allowing probing across the entire bed.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "mm",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Adaptive bed mesh",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "Vec2d(-99999, -99999)"
|
||||
];
|
||||
|
||||
Point2D bed_mesh_max = 5 [
|
||||
(label) = "Bed mesh max",
|
||||
(tooltip) = "This option sets the max point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (99999, 99999), which means there are no limits, thus allowing probing across the entire bed.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "mm",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Adaptive bed mesh",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "Vec2d(99999, 99999)"
|
||||
];
|
||||
|
||||
Point2D bed_mesh_probe_distance = 6 [
|
||||
(label) = "Probe point distance",
|
||||
(tooltip) = "This option sets the preferred distance between probe points (grid size) for the X and Y directions, with the default being 50mm for both X and Y.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "mm",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Adaptive bed mesh",
|
||||
(min_value) = 0,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "Vec2d(50, 50)"
|
||||
];
|
||||
|
||||
float adaptive_bed_mesh_margin = 7 [
|
||||
(label) = "Mesh margin",
|
||||
(tooltip) = "This option determines the additional distance by which the adaptive bed mesh area should be expanded in the XY directions.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "mm",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Adaptive bed mesh",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "0"
|
||||
];
|
||||
|
||||
bool scan_first_layer = 8 [
|
||||
(label) = "Scan first layer",
|
||||
(tooltip) = "Enable this to enable the camera on printer to check the quality of first layer.",
|
||||
(category) = "Printer/Basic information",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Advanced",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "false"
|
||||
];
|
||||
|
||||
int32 enable_power_loss_recovery = 9 [
|
||||
(label) = "Power Loss Recovery",
|
||||
(tooltip) = "Choose how to control power loss recovery. When set to Printer configuration, the slicer will not emit power loss recovery G-code and will leave the printer's configuration unchanged. Applicable to Bambu Lab or Marlin 2 firmware based printers.",
|
||||
(category) = "Printer/Basic information",
|
||||
(enum_keys_map_ref) = "ConfigOptionEnum<PowerLossRecoveryMode>::get_enum_values()",
|
||||
(co_type_hint) = "coEnum",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Advanced",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "PowerLossRecoveryMode::PrinterConfiguration",
|
||||
(enum_value_entries) = "printer_configuration",
|
||||
(enum_value_entries) = "enable",
|
||||
(enum_value_entries) = "disable",
|
||||
(enum_label_entries) = "Printer configuration",
|
||||
(enum_label_entries) = "Enable",
|
||||
(enum_label_entries) = "Disable"
|
||||
];
|
||||
|
||||
repeated int32 nozzle_type = 10 [
|
||||
(label) = "Nozzle type",
|
||||
(tooltip) = "The metallic material of nozzle. This determines the abrasive resistance of nozzle, and what kind of filament can be printed.",
|
||||
(category) = "Printer/Basic information",
|
||||
(enum_keys_map_ref) = "ConfigOptionEnum<NozzleType>::get_enum_values()",
|
||||
(co_type_hint) = "coEnums",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Accessory",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(is_nullable) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "ntUndefine",
|
||||
(enum_value_entries) = "undefine",
|
||||
(enum_value_entries) = "hardened_steel",
|
||||
(enum_value_entries) = "stainless_steel",
|
||||
(enum_value_entries) = "tungsten_carbide",
|
||||
(enum_value_entries) = "brass",
|
||||
(enum_label_entries) = "Undefine",
|
||||
(enum_label_entries) = "Hardened steel",
|
||||
(enum_label_entries) = "Stainless steel",
|
||||
(enum_label_entries) = "Tungsten carbide",
|
||||
(enum_label_entries) = "Brass",
|
||||
(list_membership) = LIST_EXTRUDER_OPTION_KEYS
|
||||
];
|
||||
|
||||
int32 nozzle_hrc = 11 [
|
||||
(label) = "Nozzle HRC",
|
||||
(tooltip) = "The nozzle's hardness. Zero means no checking for nozzle's hardness during slicing.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "HRC",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Accessory",
|
||||
(min_value) = 0,
|
||||
(max_value) = 500,
|
||||
(mode) = MODE_DEVELOP,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "0",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
int32 printer_structure = 12 [
|
||||
(label) = "Printer structure",
|
||||
(tooltip) = "The physical arrangement and components of a printing device.",
|
||||
(category) = "Printer/Basic information",
|
||||
(enum_keys_map_ref) = "ConfigOptionEnum<PrinterStructure>::get_enum_values()",
|
||||
(co_type_hint) = "coEnum",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Advanced",
|
||||
(mode) = MODE_DEVELOP,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "psUndefine",
|
||||
(enum_value_entries) = "undefine",
|
||||
(enum_value_entries) = "corexy",
|
||||
(enum_value_entries) = "i3",
|
||||
(enum_value_entries) = "hbot",
|
||||
(enum_value_entries) = "delta",
|
||||
(enum_label_entries) = "Undefine",
|
||||
(enum_label_entries) = "CoreXY",
|
||||
(enum_label_entries) = "I3",
|
||||
(enum_label_entries) = "Hbot",
|
||||
(enum_label_entries) = "Delta"
|
||||
];
|
||||
|
||||
Point2D best_object_pos = 13 [
|
||||
(label) = "Best object position",
|
||||
(tooltip) = "Best auto arranging position in range [0,1] w.r.t. bed shape.",
|
||||
(category) = "Printer/Basic information",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Printable space",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "Vec2d(0.5, 0.5)"
|
||||
];
|
||||
|
||||
bool auxiliary_fan = 14 [
|
||||
(label) = "Auxiliary part cooling fan",
|
||||
(tooltip) = "Enable this option if machine has auxiliary part cooling fan. G-code command: M106 P2 S(0-255).",
|
||||
(category) = "Printer/Basic information",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Accessory",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "false"
|
||||
];
|
||||
|
||||
float fan_speedup_time = 15 [
|
||||
(tooltip) = "Start the fan this number of seconds earlier than its target start time (you can use fractional seconds). It assumes infinite acceleration for this time estimation, and will only take into account G1 and G0 moves (arc fitting is unsupported).\\nIt won't move fan commands from custom G-code (they act as a sort of 'barrier').\\nIt won't move fan commands into the start G-code if the 'only custom start G-code' is activated.\\nUse 0 to deactivate.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "s",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Cooling Fan",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "0",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
bool fan_speedup_overhangs = 16 [
|
||||
(label) = "Only overhangs",
|
||||
(tooltip) = "Will only take into account the delay for the cooling of overhangs.",
|
||||
(category) = "Printer/Basic information",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Cooling Fan",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "true",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
float fan_kickstart = 17 [
|
||||
(label) = "Fan kick-start time",
|
||||
(tooltip) = "Emit a max fan speed command for this amount of seconds before reducing to target speed to kick-start the cooling fan.\\nThis is useful for fans where a low PWM/power may be insufficient to get the fan started spinning from a stop, or to get the fan up to speed faster.\\nSet to 0 to deactivate.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "s",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Cooling Fan",
|
||||
(min_value) = 0,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "0",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
int32 part_cooling_fan_min_pwm = 18 [
|
||||
(label) = "Minimum non-zero part cooling fan speed",
|
||||
(tooltip) = "Some part-cooling fans cannot start spinning when commanded below a certain PWM duty cycle. When set above 0, any non-zero part-cooling fan command will be raised to at least this percentage so the fan reliably starts. A fan command of 0 (fan off) is always honoured exactly. This clamp is applied after every other fan calculation (first-layer ramp, layer-time interpolation, overhang/bridge/support-interface/ironing overrides), so scaling still operates within the range [this value, 100%].\\nIf your firmware already disables the fan below a threshold (for example Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded duty cycle is below 10%), this option and the firmware threshold should ideally be set to the same value. Matching them (e.g. off_below: 0.10 in Klipper and 10% here) guarantees the slicer never emits a non-zero value that the firmware would silently drop, and the fan never receives a value below the one you know it can actually spool at.\\nSet to 0 to deactivate.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "%",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Cooling Fan",
|
||||
(min_value) = 0,
|
||||
(max_value) = 100,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "0",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
float time_cost = 19 [
|
||||
(label) = "Time cost",
|
||||
(tooltip) = "The printer cost per hour.",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "money/h",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Advanced",
|
||||
(min_value) = 0,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "0"
|
||||
];
|
||||
|
||||
bool support_chamber_temp_control = 20 [
|
||||
(label) = "Support control chamber temperature",
|
||||
(tooltip) = "This option is enabled if machine support controlling chamber temperature\\nG-code command: M141 S(0-255)",
|
||||
(category) = "Printer/Basic information",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Accessory",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "true"
|
||||
];
|
||||
|
||||
bool support_air_filtration = 21 [
|
||||
(label) = "Support air filtration",
|
||||
(tooltip) = "Enable this if printer support air filtration\\nG-code command: M106 P3 S(0-255)",
|
||||
(category) = "Printer/Basic information",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Accessory",
|
||||
(mode) = MODE_DEVELOP,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "true"
|
||||
];
|
||||
|
||||
int32 gcode_flavor = 22 [
|
||||
(label) = "G-code flavor",
|
||||
(tooltip) = "What kind of G-code the printer is compatible with.",
|
||||
(category) = "Printer/Basic information",
|
||||
(enum_keys_map_ref) = "ConfigOptionEnum<GCodeFlavor>::get_enum_values()",
|
||||
(co_type_hint) = "coEnum",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Advanced",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "gcfMarlinLegacy",
|
||||
(enum_value_entries) = "marlin",
|
||||
(enum_value_entries) = "klipper",
|
||||
(enum_value_entries) = "reprapfirmware",
|
||||
(enum_value_entries) = "repetier",
|
||||
(enum_value_entries) = "marlin2",
|
||||
(enum_value_entries) = "reprap",
|
||||
(enum_value_entries) = "teacup",
|
||||
(enum_value_entries) = "makerware",
|
||||
(enum_value_entries) = "sailfish",
|
||||
(enum_value_entries) = "mach3",
|
||||
(enum_value_entries) = "machinekit",
|
||||
(enum_value_entries) = "smoothie",
|
||||
(enum_value_entries) = "no-extrusion",
|
||||
(enum_label_entries) = "Marlin(legacy)",
|
||||
(enum_label_entries) = "Klipper",
|
||||
(enum_label_entries) = "RepRapFirmware",
|
||||
(enum_label_entries) = "Repetier",
|
||||
(enum_label_entries) = "Marlin 2",
|
||||
(enum_label_entries) = "RepRap/Sprinter",
|
||||
(enum_label_entries) = "Teacup",
|
||||
(enum_label_entries) = "MakerWare (MakerBot)",
|
||||
(enum_label_entries) = "Sailfish (MakerBot)",
|
||||
(enum_label_entries) = "Mach3/LinuxCNC",
|
||||
(enum_label_entries) = "Machinekit",
|
||||
(enum_label_entries) = "Smoothie",
|
||||
(enum_label_entries) = "No extrusion",
|
||||
(invalidates) = STEP_SKIRT_BRIM,
|
||||
(invalidates) = STEP_WIPE_TOWER
|
||||
];
|
||||
|
||||
bool pellet_modded_printer = 23 [
|
||||
(label) = "Pellet Modded Printer",
|
||||
(tooltip) = "Enable this option if your printer uses pellets instead of filaments.",
|
||||
(category) = "Printer/Basic information",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Advanced",
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "false"
|
||||
];
|
||||
|
||||
bool support_multi_bed_types = 24 [
|
||||
(label) = "Support multi bed types",
|
||||
(tooltip) = "Enable this option if you want to use multiple bed types.",
|
||||
(category) = "Printer/Basic information",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Printable space",
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "false",
|
||||
(invalidates) = STEP_SKIRT_BRIM,
|
||||
(invalidates) = STEP_WIPE_TOWER
|
||||
];
|
||||
|
||||
bool use_firmware_retraction = 25 [
|
||||
(label) = "Use firmware retraction",
|
||||
(tooltip) = "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin.",
|
||||
(category) = "Printer/Basic information",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Advanced",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "false",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
bool disable_m73 = 26 [
|
||||
(label) = "Disable set remaining print time",
|
||||
(tooltip) = "Disable generating of the M73: Set remaining print time in the final G-code.",
|
||||
(category) = "Printer/Basic information",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Advanced",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "false",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
float z_offset = 27 [
|
||||
(label) = "Z offset",
|
||||
(tooltip) = "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop).",
|
||||
(category) = "Printer/Basic information",
|
||||
(sidetext) = "mm",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Printable space",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "0",
|
||||
(invalidates) = STEP_SKIRT_BRIM,
|
||||
(invalidates) = STEP_WIPE_TOWER
|
||||
];
|
||||
|
||||
string thumbnails = 28 [
|
||||
(label) = "G-code thumbnails",
|
||||
(tooltip) = "Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the following format: \\\"XxY, XxY, ...\\\"",
|
||||
(category) = "Printer/Basic information",
|
||||
(gui_type) = "one_string",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Advanced",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "\"48x48/PNG,300x300/PNG\"",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
bool use_relative_e_distances = 29 [
|
||||
(label) = "Use relative E distances",
|
||||
(tooltip) = "Relative extrusion is recommended when using \\\"label_objects\\\" option. Some extruders work better with this option unchecked (absolute extrusion mode). Wipe tower is only compatible with relative mode. It is recommended on most printers. Default is checked.",
|
||||
(category) = "Printer/Basic information",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Basic information",
|
||||
(tab_optgroup) = "Advanced",
|
||||
(mode) = MODE_ADVANCED,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "true",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
string before_layer_change_gcode = 30 [
|
||||
(label) = "Before layer change G-code",
|
||||
(tooltip) = "This G-code is inserted at every layer change before the Z lift.",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "Before layer change G-code",
|
||||
(height) = 5,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
string machine_end_gcode = 31 [
|
||||
(label) = "End G-code",
|
||||
(tooltip) = "End G-code when finishing the entire print.",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "Machine end G-code",
|
||||
(height) = 12,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "\"M104 S0 ; turn off temperature\nG28 X0 ; home X axis\nM84 ; disable motors\n\"",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
string printing_by_object_gcode = 32 [
|
||||
(label) = "Between Object G-code",
|
||||
(tooltip) = "Insert G-code between objects. This parameter will only come into effect when you print your models object by object.",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "Printing by object G-code",
|
||||
(height) = 12,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
string layer_change_gcode = 33 [
|
||||
(label) = "Layer change G-code",
|
||||
(tooltip) = "This G-code is inserted at every layer change after the Z lift.",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "Layer change G-code",
|
||||
(height) = 5,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
string time_lapse_gcode = 34 [
|
||||
(label) = "Timelapse G-code",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "Timelapse G-code",
|
||||
(height) = 5,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
string wrapping_detection_gcode = 35 [
|
||||
(label) = "Clumping detection G-code",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "Clumping Detection G-code",
|
||||
(height) = 5,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "\"\"",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
string machine_pause_gcode = 36 [
|
||||
(label) = "Pause G-code",
|
||||
(tooltip) = "This G-code will be used as a code for the pause print. Users can insert pause G-code in the G-code viewer.",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "Pause G-code",
|
||||
(height) = 12,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = ""
|
||||
];
|
||||
|
||||
string template_custom_gcode = 37 [
|
||||
(label) = "Custom G-code",
|
||||
(tooltip) = "This G-code will be used as a custom code.",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "Template Custom G-code",
|
||||
(height) = 12,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = ""
|
||||
];
|
||||
|
||||
string file_start_gcode = 38 [
|
||||
(label) = "File header G-code",
|
||||
(tooltip) = "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}.",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "File header G-code",
|
||||
(height) = 8,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "\"\""
|
||||
];
|
||||
|
||||
string machine_start_gcode = 39 [
|
||||
(label) = "Start G-code",
|
||||
(tooltip) = "Start G-code when starting the entire print.",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "Machine start G-code",
|
||||
(height) = 12,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "\"G28 ; home all axes\nG1 Z5 F5000 ; lift nozzle\n\"",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
string change_filament_gcode = 40 [
|
||||
(label) = "Change filament G-code",
|
||||
(tooltip) = "This G-code is inserted when filament is changed, including T commands to trigger tool change.",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "Change filament G-code",
|
||||
(height) = 5,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
string change_extrusion_role_gcode = 41 [
|
||||
(label) = "Change extrusion role G-code",
|
||||
(tooltip) = "This G-code is inserted when the extrusion role is changed.",
|
||||
(category) = "Printer/Machine G-code",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Machine G-code",
|
||||
(tab_optgroup) = "Change extrusion role G-code",
|
||||
(height) = 5,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = ""
|
||||
];
|
||||
|
||||
string printer_notes = 42 [
|
||||
(label) = "Printer notes",
|
||||
(tooltip) = "You can put your notes regarding the printer here.",
|
||||
(category) = "Printer/Notes",
|
||||
(tab_type) = "Printer",
|
||||
(tab_page) = "Notes",
|
||||
(tab_optgroup) = "Notes",
|
||||
(height) = 13,
|
||||
(mode) = MODE_ADVANCED,
|
||||
(multiline) = true,
|
||||
(full_width) = true,
|
||||
(preset) = PRESET_PRINTER,
|
||||
(has_default) = true,
|
||||
(default_value) = "",
|
||||
(invalidates) = STEP_GCODE_EXPORT
|
||||
];
|
||||
|
||||
}
|
||||
658
src/PrintConfigs/layout.yaml
Normal file
658
src/PrintConfigs/layout.yaml
Normal file
@@ -0,0 +1,658 @@
|
||||
tabs:
|
||||
- name: TabPrint
|
||||
pages:
|
||||
- name: "Quality"
|
||||
icon: "custom-gcode_quality"
|
||||
groups:
|
||||
- name: "Layer height"
|
||||
fields:
|
||||
- layer_height
|
||||
- initial_layer_print_height
|
||||
- name: "Line width"
|
||||
fields:
|
||||
- line_width
|
||||
- initial_layer_line_width
|
||||
- outer_wall_line_width
|
||||
- inner_wall_line_width
|
||||
- top_surface_line_width
|
||||
- sparse_infill_line_width
|
||||
- internal_solid_infill_line_width
|
||||
- support_line_width
|
||||
- name: "Seam"
|
||||
fields:
|
||||
- seam_position
|
||||
- staggered_inner_seams
|
||||
- seam_gap
|
||||
- seam_slope_type
|
||||
- seam_slope_conditional
|
||||
- scarf_angle_threshold
|
||||
- scarf_overhang_threshold
|
||||
- scarf_joint_speed
|
||||
- seam_slope_start_height
|
||||
- seam_slope_entire_loop
|
||||
- seam_slope_min_length
|
||||
- seam_slope_steps
|
||||
- scarf_joint_flow_ratio
|
||||
- seam_slope_inner_walls
|
||||
- role_based_wipe_speed
|
||||
- wipe_speed
|
||||
- wipe_on_loops
|
||||
- wipe_before_external_loop
|
||||
- name: "Precision"
|
||||
fields:
|
||||
- slice_closing_radius
|
||||
- resolution
|
||||
- enable_arc_fitting
|
||||
- xy_hole_compensation
|
||||
- xy_contour_compensation
|
||||
- elefant_foot_compensation
|
||||
- elefant_foot_layers_density
|
||||
- elefant_foot_compensation_layers
|
||||
- precise_outer_wall
|
||||
- precise_z_height
|
||||
- hole_to_polyhole
|
||||
- hole_to_polyhole_threshold
|
||||
- hole_to_polyhole_twisted
|
||||
- name: "Ironing"
|
||||
fields:
|
||||
- ironing_type
|
||||
- ironing_pattern
|
||||
- ironing_flow
|
||||
- ironing_spacing
|
||||
- ironing_inset
|
||||
- ironing_angle
|
||||
- ironing_angle_fixed
|
||||
- name: "Wall generator"
|
||||
fields:
|
||||
- wall_generator
|
||||
- wall_transition_angle
|
||||
- wall_transition_filter_deviation
|
||||
- wall_transition_length
|
||||
- wall_distribution_count
|
||||
- initial_layer_min_bead_width
|
||||
- min_bead_width
|
||||
- min_feature_size
|
||||
- min_length_factor
|
||||
- wall_maximum_resolution
|
||||
- wall_maximum_deviation
|
||||
- name: "Walls and surfaces"
|
||||
fields:
|
||||
- wall_sequence
|
||||
- is_infill_first
|
||||
- wall_direction
|
||||
- print_flow_ratio
|
||||
- top_solid_infill_flow_ratio
|
||||
- bottom_solid_infill_flow_ratio
|
||||
- set_other_flow_ratios
|
||||
- first_layer_flow_ratio
|
||||
- outer_wall_flow_ratio
|
||||
- inner_wall_flow_ratio
|
||||
- overhang_flow_ratio
|
||||
- sparse_infill_flow_ratio
|
||||
- internal_solid_infill_flow_ratio
|
||||
- gap_fill_flow_ratio
|
||||
- support_flow_ratio
|
||||
- support_interface_flow_ratio
|
||||
- only_one_wall_first_layer
|
||||
- only_one_wall_top
|
||||
- min_width_top_surface
|
||||
- reduce_crossing_wall
|
||||
- max_travel_detour_distance
|
||||
- small_area_infill_flow_compensation
|
||||
- small_area_infill_flow_compensation_model
|
||||
- name: "Bridging"
|
||||
fields:
|
||||
- bridge_flow
|
||||
- internal_bridge_flow
|
||||
- bridge_density
|
||||
- internal_bridge_density
|
||||
- thick_bridges
|
||||
- thick_internal_bridges
|
||||
- enable_extra_bridge_layer
|
||||
- dont_filter_internal_bridges
|
||||
- counterbore_hole_bridging
|
||||
- name: "Overhangs"
|
||||
fields:
|
||||
- detect_overhang_wall
|
||||
- make_overhang_printable
|
||||
- make_overhang_printable_angle
|
||||
- make_overhang_printable_hole_size
|
||||
- extra_perimeters_on_overhangs
|
||||
- overhang_reverse
|
||||
- overhang_reverse_internal_only
|
||||
- overhang_reverse_threshold
|
||||
- name: "Strength"
|
||||
icon: "custom-gcode_strength"
|
||||
groups:
|
||||
- name: "Walls"
|
||||
fields:
|
||||
- wall_loops
|
||||
- alternate_extra_wall
|
||||
- detect_thin_wall
|
||||
- name: "Top/bottom shells"
|
||||
fields:
|
||||
- top_shell_layers
|
||||
- top_shell_thickness
|
||||
- top_surface_density
|
||||
- top_surface_pattern
|
||||
- bottom_shell_layers
|
||||
- bottom_shell_thickness
|
||||
- bottom_surface_density
|
||||
- bottom_surface_pattern
|
||||
- top_bottom_infill_wall_overlap
|
||||
- name: "Infill"
|
||||
fields:
|
||||
- sparse_infill_density
|
||||
- fill_multiline
|
||||
- sparse_infill_pattern
|
||||
- infill_direction
|
||||
- sparse_infill_rotate_template
|
||||
- skin_infill_density
|
||||
- skeleton_infill_density
|
||||
- infill_lock_depth
|
||||
- skin_infill_depth
|
||||
- skin_infill_line_width
|
||||
- skeleton_infill_line_width
|
||||
- symmetric_infill_y_axis
|
||||
- infill_shift_step
|
||||
- lateral_lattice_angle_1
|
||||
- lateral_lattice_angle_2
|
||||
- infill_overhang_angle
|
||||
- infill_anchor_max
|
||||
- infill_anchor
|
||||
- internal_solid_infill_pattern
|
||||
- solid_infill_direction
|
||||
- solid_infill_rotate_template
|
||||
- gap_fill_target
|
||||
- filter_out_gap_fill
|
||||
- infill_wall_overlap
|
||||
- name: "Advanced"
|
||||
fields:
|
||||
- align_infill_direction_to_model
|
||||
- extra_solid_infills
|
||||
- bridge_angle
|
||||
- internal_bridge_angle
|
||||
- minimum_sparse_infill_area
|
||||
- infill_combination
|
||||
- infill_combination_max_layer_height
|
||||
- detect_narrow_internal_solid_infill
|
||||
- ensure_vertical_shell_thickness
|
||||
- name: "Speed"
|
||||
icon: "custom-gcode_speed"
|
||||
groups:
|
||||
- name: "First layer speed"
|
||||
fields:
|
||||
- initial_layer_speed
|
||||
- initial_layer_infill_speed
|
||||
- initial_layer_travel_speed
|
||||
- slow_down_layers
|
||||
- name: "Other layers speed"
|
||||
fields:
|
||||
- outer_wall_speed
|
||||
- inner_wall_speed
|
||||
- small_perimeter_speed
|
||||
- small_perimeter_threshold
|
||||
- sparse_infill_speed
|
||||
- internal_solid_infill_speed
|
||||
- top_surface_speed
|
||||
- gap_infill_speed
|
||||
- ironing_speed
|
||||
- support_speed
|
||||
- support_interface_speed
|
||||
- name: "Overhang speed"
|
||||
fields:
|
||||
- enable_overhang_speed
|
||||
- slowdown_for_curled_perimeters
|
||||
- [overhang_1_4_speed, overhang_2_4_speed, overhang_3_4_speed, overhang_4_4_speed]
|
||||
- [bridge_speed, internal_bridge_speed]
|
||||
- name: "Travel speed"
|
||||
fields:
|
||||
- travel_speed
|
||||
- name: "Acceleration"
|
||||
fields:
|
||||
- default_acceleration
|
||||
- outer_wall_acceleration
|
||||
- inner_wall_acceleration
|
||||
- bridge_acceleration
|
||||
- sparse_infill_acceleration
|
||||
- internal_solid_infill_acceleration
|
||||
- initial_layer_acceleration
|
||||
- initial_layer_travel_acceleration
|
||||
- top_surface_acceleration
|
||||
- travel_acceleration
|
||||
- accel_to_decel_enable
|
||||
- accel_to_decel_factor
|
||||
- name: "Jerk(XY)"
|
||||
fields:
|
||||
- default_junction_deviation
|
||||
- default_jerk
|
||||
- outer_wall_jerk
|
||||
- inner_wall_jerk
|
||||
- infill_jerk
|
||||
- top_surface_jerk
|
||||
- initial_layer_jerk
|
||||
- initial_layer_travel_jerk
|
||||
- travel_jerk
|
||||
- name: "Advanced"
|
||||
fields:
|
||||
- max_volumetric_extrusion_rate_slope
|
||||
- max_volumetric_extrusion_rate_slope_segment_length
|
||||
- extrusion_rate_smoothing_external_perimeter_only
|
||||
- name: "Support"
|
||||
icon: "custom-gcode_support"
|
||||
groups:
|
||||
- name: "Support"
|
||||
fields:
|
||||
- enable_support
|
||||
- support_type
|
||||
- support_style
|
||||
- support_threshold_angle
|
||||
- support_threshold_overlap
|
||||
- raft_first_layer_density
|
||||
- raft_first_layer_expansion
|
||||
- support_on_build_plate_only
|
||||
- support_critical_regions_only
|
||||
- support_remove_small_overhang
|
||||
- name: "Raft"
|
||||
fields:
|
||||
- raft_layers
|
||||
- raft_contact_distance
|
||||
- name: "Support filament"
|
||||
fields:
|
||||
- support_filament
|
||||
- support_interface_filament
|
||||
- support_interface_not_for_body
|
||||
- name: "Support ironing"
|
||||
fields:
|
||||
- support_ironing
|
||||
- support_ironing_pattern
|
||||
- support_ironing_flow
|
||||
- support_ironing_spacing
|
||||
- name: "Advanced"
|
||||
fields:
|
||||
- support_top_z_distance
|
||||
- support_bottom_z_distance
|
||||
- tree_support_wall_count
|
||||
- support_base_pattern
|
||||
- support_base_pattern_spacing
|
||||
- support_angle
|
||||
- support_interface_top_layers
|
||||
- support_interface_bottom_layers
|
||||
- support_interface_pattern
|
||||
- support_interface_spacing
|
||||
- support_bottom_interface_spacing
|
||||
- support_expansion
|
||||
- support_object_xy_distance
|
||||
- support_object_first_layer_gap
|
||||
- bridge_no_support
|
||||
- max_bridge_length
|
||||
- independent_support_layer_height
|
||||
- name: "Tree supports"
|
||||
fields:
|
||||
- tree_support_tip_diameter
|
||||
- tree_support_branch_distance
|
||||
- tree_support_branch_distance_organic
|
||||
- tree_support_top_rate
|
||||
- tree_support_branch_diameter
|
||||
- tree_support_branch_diameter_organic
|
||||
- tree_support_branch_diameter_angle
|
||||
- tree_support_branch_angle
|
||||
- tree_support_branch_angle_organic
|
||||
- tree_support_angle_slow
|
||||
- tree_support_auto_brim
|
||||
- tree_support_brim_width
|
||||
- name: "Multimaterial"
|
||||
icon: "custom-gcode_multi_material"
|
||||
groups:
|
||||
- name: "Prime tower"
|
||||
fields:
|
||||
- enable_prime_tower
|
||||
- prime_tower_skip_points
|
||||
- enable_tower_interface_features
|
||||
- enable_tower_interface_cooldown_during_tower
|
||||
- prime_tower_enable_framework
|
||||
- prime_tower_width
|
||||
- prime_volume
|
||||
- prime_tower_brim_width
|
||||
- prime_tower_infill_gap
|
||||
- wipe_tower_rotation_angle
|
||||
- wipe_tower_bridging
|
||||
- wipe_tower_extra_spacing
|
||||
- wipe_tower_extra_flow
|
||||
- wipe_tower_max_purge_speed
|
||||
- wipe_tower_wall_type
|
||||
- wipe_tower_cone_angle
|
||||
- wipe_tower_extra_rib_length
|
||||
- wipe_tower_rib_width
|
||||
- wipe_tower_fillet_wall
|
||||
- wipe_tower_no_sparse_layers
|
||||
- single_extruder_multi_material_priming
|
||||
- name: "Filament for Features"
|
||||
fields:
|
||||
- wall_filament
|
||||
- sparse_infill_filament
|
||||
- solid_infill_filament
|
||||
- wipe_tower_filament
|
||||
- name: "Ooze prevention"
|
||||
fields:
|
||||
- ooze_prevention
|
||||
- standby_temperature_delta
|
||||
- preheat_time
|
||||
- preheat_steps
|
||||
- name: "Flush options"
|
||||
fields:
|
||||
- flush_into_infill
|
||||
- flush_into_objects
|
||||
- flush_into_support
|
||||
- name: "Advanced"
|
||||
fields:
|
||||
- interlocking_beam
|
||||
- interface_shells
|
||||
- mmu_segmented_region_max_width
|
||||
- mmu_segmented_region_interlocking_depth
|
||||
- interlocking_beam_width
|
||||
- interlocking_orientation
|
||||
- interlocking_beam_layer_count
|
||||
- interlocking_depth
|
||||
- interlocking_boundary_avoidance
|
||||
- name: "Others"
|
||||
icon: "custom-gcode_other"
|
||||
groups:
|
||||
- name: "Skirt"
|
||||
fields:
|
||||
- skirt_loops
|
||||
- skirt_type
|
||||
- min_skirt_length
|
||||
- skirt_distance
|
||||
- skirt_start_angle
|
||||
- skirt_speed
|
||||
- skirt_height
|
||||
- draft_shield
|
||||
- single_loop_draft_shield
|
||||
- name: "Brim"
|
||||
fields:
|
||||
- brim_type
|
||||
- brim_width
|
||||
- brim_object_gap
|
||||
- brim_flow_ratio
|
||||
- brim_use_efc_outline
|
||||
- combine_brims
|
||||
- brim_ears_max_angle
|
||||
- brim_ears_detection_length
|
||||
- name: "Special mode"
|
||||
fields:
|
||||
- slicing_mode
|
||||
- print_sequence
|
||||
- print_order
|
||||
- spiral_mode
|
||||
- spiral_mode_smooth
|
||||
- spiral_mode_max_xy_smoothing
|
||||
- spiral_starting_flow_ratio
|
||||
- spiral_finishing_flow_ratio
|
||||
- timelapse_type
|
||||
- enable_wrapping_detection
|
||||
- name: "Fuzzy Skin"
|
||||
fields:
|
||||
- fuzzy_skin
|
||||
- fuzzy_skin_mode
|
||||
- fuzzy_skin_noise_type
|
||||
- fuzzy_skin_point_distance
|
||||
- fuzzy_skin_thickness
|
||||
- fuzzy_skin_scale
|
||||
- fuzzy_skin_octaves
|
||||
- fuzzy_skin_persistence
|
||||
- fuzzy_skin_first_layer
|
||||
- name: "G-code output"
|
||||
fields:
|
||||
- reduce_infill_retraction
|
||||
- gcode_add_line_number
|
||||
- gcode_comments
|
||||
- gcode_label_objects
|
||||
- exclude_object
|
||||
- filename_format
|
||||
- name: "Change extrusion role G-code" # HOOK
|
||||
fields:
|
||||
- process_change_extrusion_role_gcode
|
||||
- name: "Post-processing Scripts"
|
||||
fields:
|
||||
- post_process
|
||||
- name: "Notes"
|
||||
fields:
|
||||
- notes
|
||||
- name: TabFilament
|
||||
pages:
|
||||
- name: "Filament"
|
||||
icon: "custom-gcode_filament"
|
||||
groups:
|
||||
- name: "Basic information" # HOOK
|
||||
fields:
|
||||
- filament_type
|
||||
- filament_vendor
|
||||
- filament_soluble
|
||||
- filament_is_support
|
||||
- filament_change_length
|
||||
- required_nozzle_HRC
|
||||
- default_filament_colour
|
||||
- filament_diameter
|
||||
- filament_adhesiveness_category
|
||||
- filament_density
|
||||
- filament_shrink
|
||||
- filament_shrinkage_compensation_z
|
||||
- filament_cost
|
||||
- temperature_vitrification
|
||||
- idle_temperature
|
||||
- [nozzle_temperature_range_low, nozzle_temperature_range_high]
|
||||
- name: "Flow ratio and Pressure Advance"
|
||||
fields:
|
||||
- pellet_flow_coefficient
|
||||
- filament_flow_ratio
|
||||
- enable_pressure_advance
|
||||
- pressure_advance
|
||||
- adaptive_pressure_advance
|
||||
- adaptive_pressure_advance_overhangs
|
||||
- adaptive_pressure_advance_bridges
|
||||
- adaptive_pressure_advance_model
|
||||
- name: "Print chamber temperature"
|
||||
fields:
|
||||
- activate_chamber_temp_control
|
||||
- chamber_temperature
|
||||
- name: "Print temperature"
|
||||
fields:
|
||||
- [nozzle_temperature_initial_layer, nozzle_temperature]
|
||||
- name: "Bed temperature"
|
||||
fields:
|
||||
- [supertack_plate_temp_initial_layer, supertack_plate_temp]
|
||||
- [cool_plate_temp_initial_layer, cool_plate_temp]
|
||||
- [textured_cool_plate_temp_initial_layer, textured_cool_plate_temp]
|
||||
- [eng_plate_temp_initial_layer, eng_plate_temp]
|
||||
- [hot_plate_temp_initial_layer, hot_plate_temp]
|
||||
- [textured_plate_temp_initial_layer, textured_plate_temp]
|
||||
- name: "Volumetric speed limitation"
|
||||
fields:
|
||||
- filament_adaptive_volumetric_speed
|
||||
- filament_max_volumetric_speed
|
||||
- name: "Cooling"
|
||||
icon: "custom-gcode_cooling_fan"
|
||||
groups:
|
||||
- name: "Cooling for specific layer"
|
||||
fields:
|
||||
- close_fan_the_first_x_layers
|
||||
- full_fan_speed_layer
|
||||
- name: "Part cooling fan"
|
||||
fields:
|
||||
- [fan_min_speed, fan_cooling_layer_time]
|
||||
- [fan_max_speed, slow_down_layer_time]
|
||||
- reduce_fan_stop_start_freq
|
||||
- slow_down_for_layer_cooling
|
||||
- dont_slow_down_outer_wall
|
||||
- slow_down_min_speed
|
||||
- enable_overhang_bridge_fan
|
||||
- overhang_fan_threshold
|
||||
- overhang_fan_speed
|
||||
- internal_bridge_fan_speed
|
||||
- support_material_interface_fan_speed
|
||||
- ironing_fan_speed
|
||||
- name: "Auxiliary part cooling fan"
|
||||
fields:
|
||||
- additional_cooling_fan_speed
|
||||
- name: "Exhaust fan"
|
||||
fields:
|
||||
- activate_air_filtration
|
||||
- [activate_air_filtration_during_print, during_print_exhaust_fan_speed]
|
||||
- [activate_air_filtration_on_completion, complete_print_exhaust_fan_speed]
|
||||
- name: "Advanced"
|
||||
icon: "custom-gcode_advanced"
|
||||
groups:
|
||||
- name: "Filament start G-code" # HOOK
|
||||
fields:
|
||||
- filament_start_gcode
|
||||
- name: "Change extrusion role G-code" # HOOK
|
||||
fields:
|
||||
- filament_change_extrusion_role_gcode
|
||||
- name: "Filament end G-code" # HOOK
|
||||
fields:
|
||||
- filament_end_gcode
|
||||
- name: "Multimaterial"
|
||||
icon: "custom-gcode_multi_material"
|
||||
groups:
|
||||
- name: "Wipe tower parameters"
|
||||
fields:
|
||||
- filament_minimal_purge_on_wipe_tower
|
||||
- filament_tower_interface_pre_extrusion_dist
|
||||
- filament_tower_interface_pre_extrusion_length
|
||||
- filament_tower_ironing_area
|
||||
- filament_tower_interface_purge_volume
|
||||
- filament_tower_interface_print_temp
|
||||
- name: "Multi Filament"
|
||||
fields:
|
||||
- long_retractions_when_ec
|
||||
- retraction_distances_when_ec
|
||||
- name: "Tool change parameters with single extruder MM printers"
|
||||
fields:
|
||||
- filament_loading_speed_start
|
||||
- filament_loading_speed
|
||||
- filament_unloading_speed_start
|
||||
- filament_unloading_speed
|
||||
- filament_toolchange_delay
|
||||
- filament_cooling_moves
|
||||
- filament_cooling_initial_speed
|
||||
- filament_cooling_final_speed
|
||||
- filament_stamping_loading_speed
|
||||
- filament_stamping_distance
|
||||
- filament_ramming_parameters # HOOK
|
||||
- name: "Tool change parameters with multi extruder MM printers"
|
||||
fields:
|
||||
- filament_multitool_ramming
|
||||
- filament_multitool_ramming_volume
|
||||
- filament_multitool_ramming_flow
|
||||
- name: "Dependencies"
|
||||
icon: "advanced"
|
||||
groups:
|
||||
- name: "Compatible printers"
|
||||
fields:
|
||||
- compatible_printers # HOOK
|
||||
- compatible_printers_condition
|
||||
- name: "Compatible process profiles"
|
||||
fields:
|
||||
- compatible_prints # HOOK
|
||||
- compatible_prints_condition
|
||||
- name: "Notes"
|
||||
icon: "custom-gcode_note"
|
||||
groups:
|
||||
- name: "Notes"
|
||||
fields:
|
||||
- filament_notes
|
||||
- name: TabPrinter
|
||||
pages:
|
||||
- name: "Basic information"
|
||||
icon: "custom-gcode_object-info"
|
||||
groups:
|
||||
- name: "Printable space"
|
||||
fields:
|
||||
- printable_area # HOOK
|
||||
- bed_exclude_area
|
||||
- printable_height
|
||||
- support_multi_bed_types
|
||||
- best_object_pos
|
||||
- z_offset
|
||||
- preferred_orientation
|
||||
- name: "Advanced" # HOOK
|
||||
fields:
|
||||
- printer_structure
|
||||
- gcode_flavor
|
||||
- pellet_modded_printer
|
||||
- bbl_use_printhost
|
||||
- scan_first_layer
|
||||
- enable_power_loss_recovery
|
||||
- disable_m73
|
||||
- thumbnails
|
||||
- use_relative_e_distances
|
||||
- use_firmware_retraction
|
||||
- time_cost
|
||||
- name: "Cooling Fan"
|
||||
fields:
|
||||
- [fan_speedup_time, fan_speedup_overhangs]
|
||||
- fan_kickstart
|
||||
- name: "Extruder Clearance"
|
||||
fields:
|
||||
- extruder_clearance_radius
|
||||
- extruder_clearance_height_to_rod
|
||||
- extruder_clearance_height_to_lid
|
||||
- name: "Adaptive bed mesh"
|
||||
fields:
|
||||
- bed_mesh_min
|
||||
- bed_mesh_max
|
||||
- bed_mesh_probe_distance
|
||||
- adaptive_bed_mesh_margin
|
||||
- name: "Accessory"
|
||||
fields:
|
||||
- nozzle_type
|
||||
- nozzle_hrc
|
||||
- auxiliary_fan
|
||||
- support_chamber_temp_control
|
||||
- support_air_filtration
|
||||
- name: "Machine G-code"
|
||||
icon: "custom-gcode_gcode"
|
||||
groups:
|
||||
- name: "File header G-code" # HOOK
|
||||
fields:
|
||||
- file_start_gcode
|
||||
- name: "Machine start G-code" # HOOK
|
||||
fields:
|
||||
- machine_start_gcode
|
||||
- name: "Machine end G-code" # HOOK
|
||||
fields:
|
||||
- machine_end_gcode
|
||||
- name: "Printing by object G-code" # HOOK
|
||||
fields:
|
||||
- printing_by_object_gcode
|
||||
- name: "Before layer change G-code" # HOOK
|
||||
fields:
|
||||
- before_layer_change_gcode
|
||||
- name: "Layer change G-code" # HOOK
|
||||
fields:
|
||||
- layer_change_gcode
|
||||
- name: "Timelapse G-code" # HOOK
|
||||
fields:
|
||||
- time_lapse_gcode
|
||||
- name: "Clumping Detection G-code" # HOOK
|
||||
fields:
|
||||
- wrapping_detection_gcode
|
||||
- name: "Change filament G-code" # HOOK
|
||||
fields:
|
||||
- change_filament_gcode
|
||||
- name: "Change extrusion role G-code" # HOOK
|
||||
fields:
|
||||
- change_extrusion_role_gcode
|
||||
- name: "Pause G-code" # HOOK
|
||||
fields:
|
||||
- machine_pause_gcode
|
||||
- name: "Template Custom G-code" # HOOK
|
||||
fields:
|
||||
- template_custom_gcode
|
||||
- name: "Notes"
|
||||
icon: "custom-gcode_note"
|
||||
groups:
|
||||
- name: "Notes"
|
||||
fields:
|
||||
- printer_notes
|
||||
Reference in New Issue
Block a user