flyingbear_base.def.json 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. {
  2. "name": "Flying Bear Base Printer",
  3. "version": 2,
  4. "inherits": "fdmprinter",
  5. "metadata": {
  6. "visible": false,
  7. "author": "oducceu",
  8. "manufacturer": "Flying Bear",
  9. "file_formats": "text/x-gcode",
  10. "first_start_actions": ["MachineSettingsAction"],
  11. "machine_extruder_trains": { "0": "flyingbear_base_extruder_0" },
  12. "has_materials": true,
  13. "preferred_material": "generic_pla",
  14. "has_variants": true,
  15. "variants_name": "Nozzle Size",
  16. "preferred_variant_name": "0.4mm Nozzle",
  17. "has_machine_quality": true,
  18. "preferred_quality_type": "normal",
  19. "exclude_materials": [
  20. "3D-Fuel_PLA_PRO_Black",
  21. "3D-Fuel_PLA_SnapSupport",
  22. "chromatik_pla",
  23. "dsm_arnitel2045_175",
  24. "dsm_novamid1070_175",
  25. "emotiontech_abs",
  26. "emotiontech_absx",
  27. "emotiontech_acetate",
  28. "emotiontech_asax",
  29. "emotiontech_bvoh",
  30. "emotiontech_hips",
  31. "emotiontech_petg",
  32. "emotiontech_pla",
  33. "emotiontech_pva-m",
  34. "emotiontech_pva-s",
  35. "emotiontech_tpu98a",
  36. "fabtotum_abs",
  37. "fabtotum_nylon",
  38. "fabtotum_pla",
  39. "fabtotum_tpu",
  40. "fiberlogy_hd_pla",
  41. "filo3d_pla",
  42. "filo3d_pla_green",
  43. "filo3d_pla_red",
  44. "generic_abs",
  45. "generic_bam",
  46. "generic_cffcpe",
  47. "generic_cffpa",
  48. "generic_cpe",
  49. "generic_cpe_plus",
  50. "generic_gffcpe",
  51. "generic_gffpa",
  52. "generic_hips",
  53. "generic_nylon",
  54. "generic_pc",
  55. "generic_petg",
  56. "generic_pla",
  57. "generic_pp",
  58. "generic_pva",
  59. "generic_tough_pla",
  60. "generic_tpu",
  61. "imade3d_petg_175",
  62. "imade3d_pla_175",
  63. "innofill_innoflex60_175",
  64. "leapfrog_abs_natural",
  65. "leapfrog_epla_natural",
  66. "leapfrog_pva_natural",
  67. "octofiber_pla",
  68. "polyflex_pla",
  69. "polymax_pla",
  70. "polyplus_pla",
  71. "polywood_pla",
  72. "redd_abs",
  73. "redd_asa",
  74. "redd_hips",
  75. "redd_nylon",
  76. "redd_petg",
  77. "redd_pla",
  78. "redd_tpe",
  79. "structur3d_dap100silicone",
  80. "tizyx_abs",
  81. "tizyx_flex",
  82. "tizyx_petg",
  83. "tizyx_pla",
  84. "tizyx_pla_bois",
  85. "tizyx_pva",
  86. "verbatim_bvoh_175",
  87. "Vertex_Delta_ABS",
  88. "Vertex_Delta_PET",
  89. "Vertex_Delta_PLA",
  90. "Vertex_Delta_PLA_Glitter",
  91. "Vertex_Delta_PLA_Mat",
  92. "Vertex_Delta_PLA_Satin",
  93. "Vertex_Delta_PLA_Wood",
  94. "Vertex_Delta_TPU",
  95. "zyyx_pro_flex",
  96. "zyyx_pro_pla"
  97. ]
  98. },
  99. "overrides": {
  100. "machine_name": { "default_value": "Flying Bear Base Printer" },
  101. "machine_start_gcode": { "default_value": "M220 S100 ;reset feedrate\nM221 S100 ;reset flowrate\nG90 ;use absolute coordinates\nM82 ;absolute extrusion mode\nG28 ;home\nG1 Z2 F1500 ;raise z\nG92 E0 ;reset extruder\n\nG1 X75 Y5 F5000 ;start position\nG1 Z0.28 F1500 ;lower z\nG1 E4 F500 ;prime the filament\nG1 X180 E10 F500 ;1st line\nG1 Y5.4 F5000\nG1 X75 E20 F500 ;2nd line\nG1 Z2 F1500 ;raise z\nG92 E0 ;reset extruder" },
  102. "machine_end_gcode": { "default_value": "G91 ;use relative coordinates\nG1 E-4 F1500 ;retract the filament\nG1 X5 Y5 Z0.2 F5000 ;wipe\nG1 Z5 F1500 ;raise z\nG90 ;use absolute coordinates\nG1 X10 Y{machine_depth} F5000 ;park print head\n\nM107 ;turn off fan\nM104 S0 ;turn off hotend\nM140 S0 ;turn off heatbed\nM84 ;disable motors" },
  103. "machine_heated_bed": { "default_value": true },
  104. "machine_shape": { "default_value": "rectangular" },
  105. "machine_buildplate_type": { "value": "glass" },
  106. "machine_center_is_zero": { "default_value": false },
  107. "material_diameter": { "default_value": 1.75 },
  108. "layer_height_0": { "value": 0.2 },
  109. "skin_line_width": { "value": "machine_nozzle_size" },
  110. "infill_line_width": { "value": "line_width + 0.1" },
  111. "skirt_brim_line_width": { "value": "line_width + 0.1" },
  112. "support_interface_line_width": { "value": "line_width - 0.1" },
  113. "wall_thickness": { "value": "line_width * 3" },
  114. "wall_0_wipe_dist": { "value": 0.0 },
  115. "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3 if layer_height > 0.15 else 0.8" },
  116. "optimize_wall_printing_order": { "value": true },
  117. "fill_outline_gaps": { "value": false },
  118. "z_seam_type": { "value": "'sharpest_corner'" },
  119. "z_seam_corner": { "value": "'z_seam_corner_weighted'" },
  120. "infill_sparse_density": { "value": 20 },
  121. "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" },
  122. "infill_overlap": { "value": 30 },
  123. "skin_overlap": { "value": 10 },
  124. "infill_wipe_dist": { "value": 0.0 },
  125. "infill_before_walls": { "value": false },
  126. "infill_enable_travel_optimization": { "value": true },
  127. "material_initial_print_temperature": { "value": "material_print_temperature" },
  128. "material_final_print_temperature": { "value": "material_print_temperature" },
  129. "retraction_min_travel": { "value": 1.5 },
  130. "retraction_count_max": { "value": 100 },
  131. "retraction_extrusion_window": { "value": 10 },
  132. "speed_print": { "value": 60 } ,
  133. "speed_infill": { "value": "speed_print * 1.5" },
  134. "speed_wall_x": { "value": "speed_print" },
  135. "speed_roofing": { "value": "speed_topbottom" },
  136. "speed_support": { "value": "speed_print" },
  137. "speed_support_interface": { "value": "speed_topbottom" },
  138. "speed_prime_tower": { "value": "speed_topbottom" },
  139. "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" },
  140. "speed_layer_0": { "value": "speed_print / 2" },
  141. "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" },
  142. "skirt_brim_speed": { "value": "speed_layer_0" },
  143. "speed_z_hop": { "value": 5 },
  144. "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" },
  145. "travel_retract_before_outer_wall": { "value": true },
  146. "retraction_combing_max_distance": { "value": 30 },
  147. "travel_avoid_other_parts": { "value": true },
  148. "travel_avoid_supports": { "value": true },
  149. "retraction_hop_enabled": { "value": false },
  150. "retraction_hop": { "value": 0.2 },
  151. "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" },
  152. "cool_min_layer_time": { "value": 10 },
  153. "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },
  154. "support_pattern": { "value": "'zigzag'" },
  155. "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" },
  156. "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
  157. "support_xy_distance": { "value": "wall_line_width_0 * 2" },
  158. "support_xy_overrides_z": { "value": "'xy_overrides_z'" },
  159. "support_xy_distance_overhang": { "value": "wall_line_width_0" },
  160. "minimum_support_area": { "value": "5.0 if support_structure != 'tree' else 0.0" },
  161. "minimum_interface_area": { "value": 10 },
  162. "support_interface_enable": { "value": true },
  163. "support_interface_height": { "value": "layer_height * 4" },
  164. "support_interface_skip_height": { "value": 0.2 },
  165. "support_interface_density": { "value": 33 },
  166. "support_interface_pattern": { "value": "'grid'" },
  167. "support_wall_count": { "value": 1 },
  168. "support_brim_enable": { "value": true },
  169. "support_brim_width": { "value": 4 },
  170. "support_use_towers": { "value": false },
  171. "adhesion_type": { "value": "'skirt'" },
  172. "skirt_line_count": { "value": 3 },
  173. "skirt_gap": { "value": 10 },
  174. "skirt_brim_minimal_length": { "value": 50 },
  175. "brim_replaces_support": { "value": false },
  176. "brim_gap": { "value": "line_width / 2 if line_width < 0.4 else 0.2" },
  177. "meshfix_maximum_resolution": { "value": 0.25 },
  178. "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
  179. "adaptive_layer_height_variation": { "value": 0.04 },
  180. "adaptive_layer_height_variation_step": { "value": 0.04 }
  181. }
  182. }