mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 13:06:05 +08:00
Add support for Ultimaker 2 Extended with Olsson Block upgrade
This commit is contained in:
parent
bcf0f507ad
commit
e4d44acefb
19
resources/machines/ultimaker2_extended_olsson.json
Normal file
19
resources/machines/ultimaker2_extended_olsson.json
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"id": "ultimaker2_extended_olsson_base",
|
||||||
|
"version": 1,
|
||||||
|
"name": "Ultimaker 2 Extended with Olsson Block",
|
||||||
|
"manufacturer": "Ultimaker",
|
||||||
|
"author": "Ultimaker",
|
||||||
|
"platform": "ultimaker2_platform.obj",
|
||||||
|
"platform_texture": "Ultimaker2backplate.png",
|
||||||
|
"visible": false,
|
||||||
|
"inherits": "ultimaker2.json",
|
||||||
|
|
||||||
|
"machine_settings": {
|
||||||
|
"machine_width": { "default": 230 },
|
||||||
|
"machine_depth": { "default": 225 },
|
||||||
|
"machine_height": { "default": 310 },
|
||||||
|
"machine_show_variants": { "default": true },
|
||||||
|
"gantry_height": { "default": 50 }
|
||||||
|
}
|
||||||
|
}
|
16
resources/machines/ultimaker2_extended_olsson_025.json
Normal file
16
resources/machines/ultimaker2_extended_olsson_025.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"id": "ultimaker2_extended_olsson",
|
||||||
|
"version": 1,
|
||||||
|
"name": "Ultimaker 2 Extended with Olsson Block",
|
||||||
|
"manufacturer": "Ultimaker",
|
||||||
|
"author": "Ultimaker",
|
||||||
|
"platform": "ultimaker2_platform.obj",
|
||||||
|
"platform_texture": "Ultimaker2backplate.png",
|
||||||
|
"visible": false,
|
||||||
|
"inherits": "ultimaker2_extended_olsson.json",
|
||||||
|
"variant": "0.25 mm",
|
||||||
|
"profiles_machine": "ultimaker2_olsson",
|
||||||
|
"machine_settings": {
|
||||||
|
"machine_nozzle_size": { "default": 0.25 }
|
||||||
|
}
|
||||||
|
}
|
16
resources/machines/ultimaker2_extended_olsson_040.json
Normal file
16
resources/machines/ultimaker2_extended_olsson_040.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"id": "ultimaker2_extended_olsson",
|
||||||
|
"version": 1,
|
||||||
|
"name": "Ultimaker 2 Extended with Olsson Block",
|
||||||
|
"manufacturer": "Ultimaker",
|
||||||
|
"author": "Ultimaker",
|
||||||
|
"platform": "ultimaker2_platform.obj",
|
||||||
|
"platform_texture": "Ultimaker2backplate.png",
|
||||||
|
"visible": false,
|
||||||
|
"inherits": "ultimaker2_extended_olsson.json",
|
||||||
|
"variant": "0.4 mm",
|
||||||
|
"profiles_machine": "ultimaker2_olsson",
|
||||||
|
"machine_settings": {
|
||||||
|
"machine_nozzle_size": { "default": 0.40 }
|
||||||
|
}
|
||||||
|
}
|
16
resources/machines/ultimaker2_extended_olsson_060.json
Normal file
16
resources/machines/ultimaker2_extended_olsson_060.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"id": "ultimaker2_extended_olsson",
|
||||||
|
"version": 1,
|
||||||
|
"name": "Ultimaker 2 Extended with Olsson Block",
|
||||||
|
"manufacturer": "Ultimaker",
|
||||||
|
"author": "Ultimaker",
|
||||||
|
"platform": "ultimaker2_platform.obj",
|
||||||
|
"platform_texture": "Ultimaker2backplate.png",
|
||||||
|
"visible": false,
|
||||||
|
"inherits": "ultimaker2_extended_olsson.json",
|
||||||
|
"variant": "0.6 mm",
|
||||||
|
"profiles_machine": "ultimaker2_olsson",
|
||||||
|
"machine_settings": {
|
||||||
|
"machine_nozzle_size": { "default": 0.60 }
|
||||||
|
}
|
||||||
|
}
|
16
resources/machines/ultimaker2_extended_olsson_080.json
Normal file
16
resources/machines/ultimaker2_extended_olsson_080.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"id": "ultimaker2_extended_olsson",
|
||||||
|
"version": 1,
|
||||||
|
"name": "Ultimaker 2 Extended with Olsson Block",
|
||||||
|
"manufacturer": "Ultimaker",
|
||||||
|
"author": "Ultimaker",
|
||||||
|
"platform": "ultimaker2_platform.obj",
|
||||||
|
"platform_texture": "Ultimaker2backplate.png",
|
||||||
|
"visible": false,
|
||||||
|
"inherits": "ultimaker2_extended_olsson.json",
|
||||||
|
"variant": "0.8 mm",
|
||||||
|
"profiles_machine": "ultimaker2_olsson",
|
||||||
|
"machine_settings": {
|
||||||
|
"machine_nozzle_size": { "default": 0.80 }
|
||||||
|
}
|
||||||
|
}
|
@ -31,7 +31,14 @@ Item
|
|||||||
Component.onDestruction:
|
Component.onDestruction:
|
||||||
{
|
{
|
||||||
if (hotendCheckBox.checked == true){
|
if (hotendCheckBox.checked == true){
|
||||||
UM.MachineManager.setMachineDefinitionType("ultimaker2_olsson")
|
switch(UM.MachineManager.getMachineDefinitionType()) {
|
||||||
|
case "ultimaker2":
|
||||||
|
UM.MachineManager.setMachineDefinitionType("ultimaker2_olsson")
|
||||||
|
break;
|
||||||
|
case "ultimaker2_extended":
|
||||||
|
UM.MachineManager.setMachineDefinitionType("ultimaker2_extended_olsson")
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Label
|
Label
|
||||||
|
Loading…
x
Reference in New Issue
Block a user