Implement Johanns method of specifying segments for delta bots in segments per second.
[clinton/Smoothieware.git] / ConfigSamples / Smoothieboard.Rostock / config
CommitLineData
c826a67a
L
1# Robot module configurations : general handling of movement G-codes and slicing into moves
2default_feed_rate 4000 # Default rate ( mm/minute ) for G1/G2/G3 moves
3default_seek_rate 4000 # Default rate ( mm/minute ) for G0 moves
4mm_per_arc_segment 0.5 # Arcs are cut into segments ( lines ), this is the length for these segments. Smaller values mean more resolution, higher values mean faster computation
4a0c8e14
JM
5mm_per_line_segment 0.0 # Lines can be cut into segments ( not usefull with cartesian coordinates robots, but very useful on a delta type bot ). set to 0.0 to disable
6delta_segments_per_second 100 # for deltas only same as in Marlin/Delta, set to 0 to disable and use mm_per_line_segment
c826a67a
L
7
8# Arm solution configuration : Cartesian robot. Translates mm positions into stepper positions
9arm_solution rostock # selects the rostock arm solution
10
11alpha_steps_per_mm 80 # Steps per mm for alpha stepper
12beta_steps_per_mm 80 # Steps per mm for beta stepper
13gamma_steps_per_mm 80 # Steps per mm for gamma stepper
14
5eb55ce8 15alpha_angle 30.0 # this provides an optional offset from the alpha tower to the x/y system
33bb9d9a
L
16beta_relative_angle 120.0 # this is the angle in degrees from the alpha tower to the beta tower
17gamma_relative_angle 240.0 # this is the angle in degrees from the alpha tower to the gamma tower
deee97d2 18
5eb55ce8
L
19arm_length 250.0 # this is the length of an arm from hinge to hinge
20arm_radius 124.0 # this is the horiontal distance from hinge to hinge when the effector is centered
c826a67a
L
21
22# Planner module configuration : Look-ahead and acceleration configuration
23planner_queue_size 64 # Size of the planning queue, must be a power of 2. 128 seems to be the maximum.
24acceleration 3000 # Acceleration in mm/second/second.
25acceleration_ticks_per_second 1000 # Number of times per second the speed is updated
26junction_deviation 0.05 # Similar to the old "max_jerk", in millimeters, see : https://github.com/grbl/grbl/blob/master/planner.c#L409
27 # and https://github.com/grbl/grbl/wiki/Configuring-Grbl-v0.8 . Lower values mean being more careful, higher values means being faster and have more jerk
28
29# Stepper module configuration
30microseconds_per_step_pulse 1 # Duration of step pulses to stepper drivers, in microseconds
31minimum_steps_per_minute 1200 # Never step slower than this
32base_stepping_frequency 100000 # Base frequency for stepping, higher gives smoother movement
33
34# Stepper module pins ( ports, and pin numbers, appending "!" to the number will invert a pin )
35alpha_step_pin 2.0 # Pin for alpha stepper step signal
36alpha_dir_pin 0.5 # Pin for alpha stepper direction
37alpha_en_pin 0.4 # Pin for alpha enable pin
38alpha_current 1.5 # X stepper motor current
39x_axis_max_speed 30000 # mm/min
40
41beta_step_pin 2.1 # Pin for beta stepper step signal
42beta_dir_pin 0.11 # Pin for beta stepper direction
43beta_en_pin 0.10 # Pin for beta enable
44beta_current 1.5 # Y stepper motor current
45y_axis_max_speed 30000 # mm/min
46
47gamma_step_pin 2.2 # Pin for gamma stepper step signal
48gamma_dir_pin 0.20 # Pin for gamma stepper direction
49gamma_en_pin 0.19 # Pin for gamma enable
50gamma_current 1.5 # Z stepper motor current
51z_axis_max_speed 30000 # mm/min
52
53# Serial communications configuration ( baud rate default to 9600 if undefined )
54uart0.baud_rate 115200 # Baud rate for the default serial port
55
56# Extruder module configuration
57extruder_module_enable true # Whether to activate the extruder module at all. All configuration is ignored if false
58extruder_steps_per_mm 140 # Steps per mm for extruder stepper
59extruder_default_feed_rate 600 # Default rate ( mm/minute ) for moves where only the extruder moves
60extruder_acceleration 50 # Acceleration for the stepper motor, as of 0.6, arbitrary ratio
61extruder_max_speed 1000 # mm^3/s
62
63extruder_step_pin 2.3 # Pin for extruder step signal
64extruder_dir_pin 0.22 # Pin for extruder dir signal
65extruder_en_pin 0.21 # Pin for extruder enable signal
66delta_current 1.5 # Extruder stepper motor current
67
68# Laser module configuration
69laser_module_enable false # Whether to activate the laser module at all. All configuration is ignored if false.
70
71# Hotend temperature control configuration
72temperature_control.hotend.enable true # Whether to activate this ( "hotend" ) module at all. All configuration is ignored if false.
73temperature_control.hotend.thermistor_pin 0.23 # Pin for the thermistor to read
74temperature_control.hotend.heater_pin 2.7 # Pin that controls the heater
75temperature_control.hotend.thermistor EPCOS100K # see src/modules/tools/temperaturecontrol/TemperatureControl.cpp:64 for a list of valid thermistor names
76temperature_control.hotend.set_m_code 104 #
77temperature_control.hotend.set_and_wait_m_code 109 #
78temperature_control.hotend.designator T #
79
80temperature_control.bed.enable true #
81temperature_control.bed.thermistor_pin 0.24 #
82temperature_control.bed.heater_pin 2.5 #
83temperature_control.bed.thermistor Honeywell100K # see src/modules/tools/temperaturecontrol/TemperatureControl.cpp:64 for a list of valid thermistor names
84temperature_control.bed.set_m_code 140 #
85temperature_control.bed.set_and_wait_m_code 190 #
86temperature_control.bed.designator B #
87
88# Switch module for fan control
89switch.fan.enable true #
90switch.fan.on_m_code 106 #
91switch.fan.off_m_code 107 #
92switch.fan.output_pin 2.6 #
93
94switch.misc.enable true #
95switch.misc.on_m_code 42 #
96switch.misc.off_m_code 43 #
97switch.misc.output_pin 2.4 #
98
99# Switch module for spindle control
100switch.spindle.enable false #
101
102# Endstops
103alpha_min_endstop 1.24 #
104alpha_max_endstop 1.25 #
a803eb76
JM
105alpha_homing_direction 1 #
106alpha_min 0 #
107alpha_max 0 #
c826a67a
L
108beta_min_endstop 1.26 #
109beta_max_endstop 1.27 #
a803eb76
JM
110beta_homing_direction 1 #
111beta_min 0 #
112beta_max 0 #
c826a67a
L
113gamma_min_endstop 1.28 #
114gamma_max_endstop 1.29 #
a803eb76
JM
115gamma_homing_direction 1 #
116gamma_min 0 #
117gamma_max 300 #
118
119alpha_fast_homing_rate 3000 # rates in steps/second
120beta_fast_homing_rate 3000 #
121gamma_fast_homing_rate 3000 #
122alpha_slow_homing_rate 1000 #
123beta_slow_homing_rate 1000 #
124gamma_slow_homing_rate 1000
125
126alpha_homing_retract 500 #
127beta_homing_retract 500 #
128gamma_homing_retract 500 #
129
130# Pause button
131pause_button_enable true #
c826a67a
L
132
133# Panel
134panel.enable false #
135panel.up_button_pin 0.1! #
136panel.down_button_pin 0.0! #
137panel.click_button_pin 0.18! #
138panel.encoder_a_pin 0.15! #
139panel.encoder_b_pin 0.17! #
140
141# Only needed on a smoothieboard
142currentcontrol_module_enable true #