fdmextruder.def.json 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. {
  2. "id": "fdmextruder",
  3. "name": "Extruder",
  4. "version": 2,
  5. "metadata":
  6. {
  7. "type": "extruder",
  8. "author": "Ultimaker B.V.",
  9. "manufacturer": "Ultimaker",
  10. "visible": false
  11. },
  12. "settings":
  13. {
  14. "machine_settings":
  15. {
  16. "label": "Machine",
  17. "type": "category",
  18. "description": "Machine specific settings",
  19. "children":
  20. {
  21. "extruder_nr":
  22. {
  23. "label": "Extruder",
  24. "description": "The extruder train used for printing. This is used in multi-extrusion.",
  25. "type": "int",
  26. "default_value": 0,
  27. "minimum_value": "0",
  28. "maximum_value": "machine_extruder_count - 1"
  29. },
  30. "machine_nozzle_offset_x":
  31. {
  32. "label": "Nozzle X Offset",
  33. "description": "The x-coordinate of the offset of the nozzle.",
  34. "type": "float",
  35. "unit": "mm",
  36. "default_value": 0,
  37. "global_only": "True"
  38. },
  39. "machine_nozzle_offset_y":
  40. {
  41. "label": "Nozzle Y Offset",
  42. "description": "The y-coordinate of the offset of the nozzle.",
  43. "type": "float",
  44. "unit": "mm",
  45. "default_value": 0,
  46. "global_only": "True"
  47. },
  48. "machine_extruder_start_code":
  49. {
  50. "label": "Extruder Start G-Code",
  51. "description": "Start g-code to execute whenever turning the extruder on.",
  52. "type": "str",
  53. "default_value": "",
  54. "global_only": "True"
  55. },
  56. "machine_extruder_start_pos_abs":
  57. {
  58. "label": "Extruder Start Position Absolute",
  59. "description": "Make the extruder starting position absolute rather than relative to the last-known location of the head.",
  60. "type": "bool",
  61. "default_value": false,
  62. "global_only": "True"
  63. },
  64. "machine_extruder_start_pos_x":
  65. {
  66. "label": "Extruder Start Position X",
  67. "description": "The x-coordinate of the starting position when turning the extruder on.",
  68. "type": "float",
  69. "unit": "mm",
  70. "default_value": 0,
  71. "global_only": "True"
  72. },
  73. "machine_extruder_start_pos_y":
  74. {
  75. "label": "Extruder Start Position Y",
  76. "description": "The y-coordinate of the starting position when turning the extruder on.",
  77. "type": "float",
  78. "unit": "mm",
  79. "default_value": 0,
  80. "global_only": "True"
  81. },
  82. "machine_extruder_end_code":
  83. {
  84. "label": "Extruder End G-Code",
  85. "description": "End g-code to execute whenever turning the extruder off.",
  86. "type": "str",
  87. "default_value": "",
  88. "global_only": "True"
  89. },
  90. "machine_extruder_end_pos_abs":
  91. {
  92. "label": "Extruder End Position Absolute",
  93. "description": "Make the extruder ending position absolute rather than relative to the last-known location of the head.",
  94. "type": "bool",
  95. "default_value": false,
  96. "global_only": "True"
  97. },
  98. "machine_extruder_end_pos_x":
  99. {
  100. "label": "Extruder End Position X",
  101. "description": "The x-coordinate of the ending position when turning the extruder off.",
  102. "type": "float",
  103. "unit": "mm",
  104. "default_value": 0,
  105. "global_only": "True"
  106. },
  107. "machine_extruder_end_pos_y":
  108. {
  109. "label": "Extruder End Position Y",
  110. "description": "The y-coordinate of the ending position when turning the extruder off.",
  111. "type": "float",
  112. "unit": "mm",
  113. "default_value": 0,
  114. "global_only": "True"
  115. },
  116. }
  117. }
  118. }
  119. }