Advertisement
Helmi

Untitled

Mar 9th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.69 KB | None | 0 0
  1. # Smoothieboard configuration file, see http://smoothieware.org/configuring-smoothie
  2. # NOTE Lines must not exceed 132 characters, and '#' characters mean what follows is ignored
  3. ## Robot module configurations : general handling of movement G-codes and slicing into moves
  4.  
  5. # Basic motion configuration
  6. default_feed_rate 4000 # Default speed (mm/minute) for G1/G2/G3 moves
  7. default_seek_rate 4000 # Default speed (mm/minute) for G0 moves
  8. mm_per_arc_segment 0.0 # Fixed length for line segments that divide arcs, 0 to disable
  9. #mm_per_line_segment 5 # Cut lines into segments this size
  10. mm_max_arc_error 0.01 # The maximum error for line segments that divide arcs 0 to disable
  11. # note it is invalid for both the above be 0
  12. # if both are used, will use largest segment length based on radius
  13.  
  14. # Arm solution configuration : Cartesian robot. Translates mm positions into stepper positions
  15. # See http://smoothieware.org/stepper-motors
  16. arm_solution corexy
  17.  
  18. alpha_steps_per_mm 80 # Steps per mm for alpha ( X ) stepper
  19. beta_steps_per_mm 80 # Steps per mm for beta ( Y ) stepper
  20. gamma_steps_per_mm 1600 # Steps per mm for gamma ( Z ) stepper
  21.  
  22. # Planner module configuration : Look-ahead and acceleration configuration
  23. # See http://smoothieware.org/motion-control
  24. acceleration 3000 # Acceleration in mm/second/second.
  25. #z_acceleration 500 # Acceleration for Z only moves in mm/s^2, 0 uses acceleration which is the default. DO NOT SET ON A DELTA
  26. junction_deviation 0.05 # See http://smoothieware.org/motion-control#junction-deviation
  27. #z_junction_deviation 0.0 # For Z only moves, -1 uses junction_deviation, zero disables junction_deviation on z moves DO NOT SET ON A DELTA
  28.  
  29. # Cartesian axis speed limits
  30. x_axis_max_speed 30000 # Maximum speed in mm/min
  31. y_axis_max_speed 30000 # Maximum speed in mm/min
  32. z_axis_max_speed 300 # Maximum speed in mm/min
  33.  
  34. # Stepper module configuration
  35. # Pins are defined as ports, and pin numbers, appending "!" to the number will invert a pin
  36. # See http://smoothieware.org/pin-configuration and http://smoothieware.org/pinout
  37. alpha_step_pin 2.0 # Pin for alpha stepper step signal
  38. alpha_dir_pin 0.5 # Pin for alpha stepper direction, add '!' to reverse direction
  39. alpha_en_pin 0.4 # Pin for alpha enable pin
  40. alpha_current 0.5 # X stepper motor current
  41. alpha_max_rate 30000.0 # Maximum rate in mm/min
  42.  
  43. beta_step_pin 2.1 # Pin for beta stepper step signal
  44. beta_dir_pin 0.11 # Pin for beta stepper direction, add '!' to reverse direction
  45. beta_en_pin 0.10 # Pin for beta enable
  46. beta_current 0.5 # Y stepper motor current
  47. beta_max_rate 30000.0 # Maxmimum rate in mm/min
  48.  
  49. ## Laser module configuration
  50. # See http://smoothieware.org/laser
  51. laser_module_enable true # Whether to activate the laser module at all
  52. laser_module_pwm_pin 2.5 # This pin will be PWMed to control the laser.
  53. # Only pins 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 1.18, 1.20, 1.21, 1.23, 1.24, 1.26, 3.25 and 3.26
  54. # can be used since laser requires hardware PWM, see http://smoothieware.org/pinout
  55. laser_module_ttl_pin 1.30 # This pin turns on when the laser turns on, and off when the laser turns off.
  56. laser_module_maximum_power 1.0 # This is the maximum duty cycle that will be applied to the laser
  57. laser_module_minimum_power 0.0 # This is a value just below the minimum duty cycle that keeps the laser
  58. # active without actually burning.
  59. laser_module_default_power 0.8 # This is the default laser power that will be used for cuts if a power has not been specified. The value is a scale between
  60. # the maximum and minimum power levels specified above
  61. laser_module_pwm_period 10 # This sets the pwm frequency as the period in microseconds
  62.  
  63. ## Endstops
  64.  
  65. include endstops.config
  66.  
  67. # End of endstop config
  68.  
  69. ## System configuration
  70. # Serial communications configuration ( baud rate defaults to 9600 if undefined )
  71. # For communication over the UART port, *not* the USB/Serial port
  72. uart0.baud_rate 115200 # Baud rate for the default hardware ( UART ) serial port
  73.  
  74. second_usb_serial_enable false # This enables a second USB serial port
  75. #leds_disable true # Disable using leds after config loaded
  76. #play_led_disable true # Disable the play led
  77.  
  78. # Kill button maybe assigned to a different pin, set to the onboard pin by default
  79. # See http://smoothieware.org/killbutton
  80. kill_button_enable false # Set to true to enable a kill button
  81. kill_button_pin 2.12 # Kill button pin. default is same as pause button 2.12 (2.11 is another good choice)
  82.  
  83. #msd_disable false # Disable the MSD (USB SDCARD), see http://smoothieware.org/troubleshooting#disable-msd
  84. #dfu_enable false # For linux developers, set to true to enable DFU
  85.  
  86. # Only needed on a smoothieboard
  87. # See http://smoothieware.org/currentcontrol
  88. currentcontrol_module_enable true # Control stepper motor current via the configuration file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement