ultimaker_original.def.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "id": "ultimaker_original",
  3. "version": 2,
  4. "name": "Ultimaker Original",
  5. "inherits": "ultimaker",
  6. "metadata": {
  7. "visible": true,
  8. "author": "Ultimaker",
  9. "manufacturer": "Ultimaker",
  10. "category": "Ultimaker",
  11. "weight": 4,
  12. "file_formats": "text/x-gcode",
  13. "icon": "icon_ultimaker.png",
  14. "platform": "ultimaker_platform.stl",
  15. "has_materials": true,
  16. "first_start_actions": ["UMOUpgradeSelection", "UMOCheckup", "BedLevel"],
  17. "supported_actions": ["UMOUpgradeSelection", "UMOCheckup", "BedLevel", "UpgradeFirmware"]
  18. },
  19. "overrides": {
  20. "machine_name": { "default_value": "Ultimaker Original" },
  21. "machine_width": {
  22. "default_value": 205
  23. },
  24. "machine_height": {
  25. "default_value": 200
  26. },
  27. "machine_depth": {
  28. "default_value": 205
  29. },
  30. "machine_center_is_zero": {
  31. "default_value": false
  32. },
  33. "machine_nozzle_size": {
  34. "default_value": 0.4
  35. },
  36. "machine_nozzle_heat_up_speed": {
  37. "default_value": 2
  38. },
  39. "machine_nozzle_cool_down_speed": {
  40. "default_value": 2
  41. },
  42. "machine_head_with_fans_polygon":
  43. {
  44. "default_value": [
  45. [ -75, 35 ],
  46. [ -75, -18 ],
  47. [ 18, 35 ],
  48. [ 18, -18 ]
  49. ]
  50. },
  51. "gantry_height": {
  52. "default_value": 55
  53. },
  54. "machine_use_extruder_offset_to_offset_coords": {
  55. "default_value": true
  56. },
  57. "machine_gcode_flavor": {
  58. "default_value": "RepRap (Marlin/Sprinter)"
  59. },
  60. "machine_start_gcode": {
  61. "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 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E6 ;extrude 6 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..."
  62. },
  63. "machine_end_gcode": {
  64. "value": "'M104 S0 ;extruder heater off' + ('\\nM140 S0 ;heated bed heater off' if machine_heated_bed else '') + '\\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 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\\nM84 ;steppers off\\nG90 ;absolute positioning'"
  65. }
  66. }
  67. }