ENH: add some missing filament types

jira:NONE

Signed-off-by: xun.zhang <xun.zhang@bambulab.com>
Change-Id: I6d5b8f7a3c2eb26950bf39694023903ddbc47088
This commit is contained in:
xun.zhang 2024-10-09 15:36:52 +08:00 committed by Lane.Wei
parent e3c8496a62
commit 14eb79ab9a
2 changed files with 7 additions and 2 deletions

View File

@ -1,8 +1,9 @@
{ {
"version": "1.0.0.2", "version": "1.0.0.3",
"high_temp_filament": [ "high_temp_filament": [
"ABS", "ABS",
"ASA", "ASA",
"ASA-CF",
"PC", "PC",
"PA", "PA",
"PA-CF", "PA-CF",
@ -19,14 +20,17 @@
"low_temp_filament": [ "low_temp_filament": [
"PLA", "PLA",
"TPU", "TPU",
"TPU-AMS",
"PLA-CF", "PLA-CF",
"PLA-AERO", "PLA-AERO",
"PVA", "PVA",
"BVOH" "BVOH",
"PCTG"
], ],
"high_low_compatible_filament":[ "high_low_compatible_filament":[
"HIPS", "HIPS",
"PETG", "PETG",
"PETG-CF",
"PE", "PE",
"PP", "PP",
"EVA", "EVA",

View File

@ -1570,6 +1570,7 @@ void PrintConfigDef::init_fff_params()
def->enum_values.push_back("PLA"); def->enum_values.push_back("PLA");
def->enum_values.push_back("ABS"); def->enum_values.push_back("ABS");
def->enum_values.push_back("ASA"); def->enum_values.push_back("ASA");
def->enum_values.push_back("ASA-CF");
def->enum_values.push_back("PETG"); def->enum_values.push_back("PETG");
def->enum_values.push_back("PCTG"); def->enum_values.push_back("PCTG");
def->enum_values.push_back("TPU"); def->enum_values.push_back("TPU");