Update the thinker printer profile (#10431)

* Adding Eryone Thinker profile to Cura

- adding printer definition
- adding extruder definition
- adding image plate
- adding platform object
- adding quality profiles

* Minor update eryone_thinker.def.json

Fix initial fan speed

* Improve model textures and draw order

Fixed draw order of model by seperating the mesh into parts and ordering them before export.  Add more colors to the texture to allow for more distictant parts.

* Reduced mesh size by remodeling the bed height adjustment wheels.

* Updated Eryone Thinker name to include Series in the name

* Update eryone_thinker.def.json

* Improve End GCode

Ensure we disable bed temp and turn off all fans.
Move the nozzle up by 0.5mm and retract to remove wipe on model top layer.

* Minor fixes to start and end gcode

* Eryone Thinker Profile improvements.

Adding Extra Fast profile.
Added acceleration speed for Fast.
Minor updates to definition for default material to be Eryone PLA and some other setting to work better with profiles.

* Delete eryone_thinker.def.json

* Create eryone_thinker.def.json

* Updating Eryone Thinker Definition

Added changes again due to for reconcile stomping the original

* Update eryone_thinker_fast.inst.cfg

Update the layer_height to 0.25mm

Co-authored-by: Demetrius Apostolopoulos <75643490+dapostol73@users.noreply.github.com>
This commit is contained in:
Eryone 2021-09-24 21:03:51 +08:00 committed by GitHub
parent 413913a5a8
commit c6c325facb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 46 additions and 7 deletions

View File

@ -12,7 +12,7 @@
"platform_texture": "eryone_thinker_plate.png",
"platform_offset": [0, -120, 0],
"has_materials": true,
"preferred_material": "generic_pla",
"preferred_material": "eryone_pla",
"has_machine_quality": true,
"preferred_quality_type": "normal",
"machine_extruder_trains":
@ -57,10 +57,10 @@
"default_value": "Marlin"
},
"machine_start_gcode": {
"default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z10.0 F600 ;move the platform down 10mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Y-3 F1200 ;move to prime\nG1 X10 F1200 ;\nG1 Z0.1 F600 ;get ready to prime\nG1 X120 E15 F1200 ;prime nozzle \nG1 X120 F3600 ;quick wipe\nG92 E0 ;zero the extruded length\nG5 ;enable resume from power failure\nM117 Printing..."
"default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z10.0 F600 ;move the platform down 10mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Y-3 F1200 ;move to prime\nG1 X10 F1200 ;\nG1 Z0.1 F600 ;get ready to prime\nG1 X120 E15 F1200 ;prime nozzle \nG1 X120 F3600 ;quick wipe\nG92 E0 ;zero the extruded length\nM413 S1 ;enable resume from power failure\nM117 Printing..."
},
"machine_end_gcode": {
"default_value": "M104 S0 ;turn off extruder\nM140 S0 ;turn off bed\nM107 ;turn off all fans\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 E-5 F300\nG1 Z+0.5 E-5 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y250 F4800 ; position for easy part removal\nM84 ;steppers off"
"default_value": "M104 S0 ;turn off extruder\nM140 S0 ;turn off bed\nM107 ;turn off all fans\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y250 F4800 ; position for easy part removal\nM84 ;steppers off"
},
"acceleration_enabled": {
"value": true
@ -160,7 +160,7 @@
"value": 10
},
"skirt_brim_speed": {
"value": 40
"value": "math.ceil(speed_print * 40 / 60)"
},
"skirt_gap": {
"value": 5
@ -229,7 +229,7 @@
"value": 3
},
"wall_thickness": {
"value": "1.2"
"value": "line_width * wall_line_count"
},
"bottom_layers": {
"value": "4"
@ -250,4 +250,4 @@
"value": "'z_seam_corner_inner'"
}
}
}
}

View File

@ -0,0 +1,37 @@
[general]
version = 4
name = Extra Fast
definition = eryone_thinker
[metadata]
setting_version = 17
type = quality
quality_type = verydraft
weight = -3
global_quality = True
[values]
acceleration_print = 1500
acceleration_travel = 3000
infill_sparse_density = 10
initial_layer_line_width_factor = 100.0
layer_height = 0.3
layer_height_0 = =layer_height
material_bed_temperature = =default_material_bed_temperature
material_bed_temperature_layer_0 = =material_bed_temperature
material_final_print_temperature = =material_print_temperature
material_initial_print_temperature = =material_print_temperature
material_print_temperature = =default_material_print_temperature
material_print_temperature_layer_0 = =max(-273.15, material_print_temperature + 5)
skirt_brim_speed = =math.ceil(speed_print * 40 / 50)
speed_print = 100.0
speed_infill = =math.ceil(speed_print * 60 / 50)
speed_topbottom = =math.ceil(speed_print * 40 / 50)
speed_travel = =speed_print if magic_spiralize else 150
speed_layer_0 = =math.ceil(speed_print * 40 / 50)
speed_wall_0 = =math.ceil(speed_print * 40 / 50)
speed_wall_x = =math.ceil(speed_print * 60 / 50)
speed_z_hop = =math.ceil(speed_print * 30 / 60)
top_layers = 4
bottom_layers = 2
wall_line_count = 2

View File

@ -11,9 +11,11 @@ weight = -1
global_quality = True
[values]
acceleration_print = 1500
acceleration_travel = 3000
infill_sparse_density = 15
initial_layer_line_width_factor = 100.0
layer_height = 0.3
layer_height = 0.25
layer_height_0 = =layer_height
material_bed_temperature = =default_material_bed_temperature
material_bed_temperature_layer_0 = =material_bed_temperature