Merge pull request #7769 from paalex/master

add 2nd extruder to Tevo Tarantula and Tevo Tarantula Pro printers
This commit is contained in:
Konstantinos Karmas 2020-05-20 15:06:04 +02:00 committed by GitHub
commit 1ec3c562ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 34 additions and 2 deletions

View file

@ -11,7 +11,8 @@
"platform": "prusai3_platform.3mf", "platform": "prusai3_platform.3mf",
"machine_extruder_trains": "machine_extruder_trains":
{ {
"0": "tevo_tarantula_extruder_0" "0": "tevo_tarantula_extruder_0",
"1": "tevo_tarantula_extruder_1"
} }
}, },

View file

@ -11,7 +11,8 @@
"has_materials": true, "has_materials": true,
"machine_extruder_trains": "machine_extruder_trains":
{ {
"0": "tevo_tarantula_pro_extruder_0" "0": "tevo_tarantula_pro_extruder_0",
"1": "tevo_tarantula_pro_extruder_1"
} }
}, },

View file

@ -0,0 +1,15 @@
{
"version": 2,
"name": "Extruder 2",
"inherits": "fdmextruder",
"metadata": {
"machine": "tevo_tarantula",
"position": "1"
},
"overrides": {
"extruder_nr": { "default_value": 1 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 }
}
}

View file

@ -0,0 +1,15 @@
{
"version": 2,
"name": "Extruder 2",
"inherits": "fdmextruder",
"metadata": {
"machine": "tevo_tarantula_pro",
"position": "1"
},
"overrides": {
"extruder_nr": { "default_value": 1 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 }
}
}