Default config for Smoothieboard
[clinton/Smoothieware.git] / config-smoothieboard.ini
CommitLineData
83f1253a
MM
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
5mm_per_line_segment 5 # Lines can be cut into segments ( not usefull with cartesian coordinates robots ).
6z_axis_max_speed 200 # Max allowable speed for this axis
7
8# Arm solution configuration : Cartesian robot. Translates mm positions into stepper positions
9alpha_steps_per_mm 80 # Steps per mm for alpha stepper
10beta_steps_per_mm 80 # Steps per mm for beta stepper
11gamma_steps_per_mm 1600 # Steps per mm for gamma stepper
12
13# Planner module configuration : Look-ahead and acceleration configuration
14planner_queue_size 64 # Size of the planning queue, must be a power of 2. 128 seems to be the maximum.
15acceleration 4000 # Acceleration in mm/second/second.
16acceleration_ticks_per_second 1000 # Number of times per second the speed is updated
17max_jerk 200 # Max instant cornering speed change. Higher means jerkier/faster, lower means smoother/slower.
18
19# Stepper module configuration
20microseconds_per_step_pulse 1 # Duration of step pulses to stepper drivers, in microseconds
21minimum_steps_per_minute 1200 # Never step slower than this
22base_stepping_frequency 70000 # Base frequency for stepping, higher gives smoother movement
23
24# Stepper module pins ( ports, and pin numbers, appending "!" to the number will invert a pin )
25alpha_step_pin 2.0 # Pin for alpha stepper step signal
26alpha_dir_pin 0.5 # Pin for alpha stepper direction
27alpha_en_pin 0.4 # Pin for alpha enable pin
28alpha_current 1.0 # X stepper motor current
29
30beta_step_pin 2.1 # Pin for beta stepper step signal
31beta_dir_pin 0.11 # Pin for beta stepper direction
32beta_en_pin 0.10 # Pin for beta enable
33beta_current 1.0 # Y stepper motor current
34
35gamma_step_pin 2.2 # Pin for gamma stepper step signal
36gamma_dir_pin 0.20 # Pin for gamma stepper direction
37gamma_en_pin 0.19 # Pin for gamma enable
38gamma_current 1.0 # Z stepper motor current
39
40# Serial communications configuration ( baud rate default to 9600 if undefined )
41uart0.baud_rate 2000000 # Baud rate for the default serial port
42
43# Extruder module configuration
44extruder_module_enable true # Whether to activate the extruder module at all. All configuration is ignored if false
45extruder_steps_per_mm 140 # Steps per mm for extruder stepper
46extruder_default_feed_rate 600 # Default rate ( mm/minute ) for moves where only the extruder moves
47extruder_acceleration 50 # Acceleration for the stepper motor, as of 0.6, arbitrary ratio
48
49extruder_step_pin 2.3 # Pin for extruder step signal
50extruder_dir_pin 0.22 # Pin for extruder dir signal
51extruder_en_pin 0.21 # Pin for extruder enable signal
52delta_current 1.0 # Extruder stepper motor current
53
54# Laser module configuration
55laser_module_enable false # Whether to activate the laser module at all. All configuration is ignored if false.
56
57# Hotend temperature control configuration
58temperature_control.hotend.enable true # Whether to activate this ( "hotend" ) module at all. All configuration is ignored if false.
59temperature_control.hotend.thermistor_pin 0.23 # Pin for the thermistor to read
60temperature_control.hotend.heater_pin 2.5 # Pin that controls the heater
61temperature_control.hotend.thermistor EPCOS100K # see src/modules/tools/temperaturecontrol/TemperatureControl.cpp:64 for a list of valid thermistor names
62temperature_control.hotend.set_m_code 104 #
63temperature_control.hotend.set_and_wait_m_code 109 #
64
65temperature_control.bed.enable true #
66temperature_control.bed.thermistor_pin 0.24 #
67temperature_control.bed.heater_pin 2.7 #
68temperature_control.bed.thermistor Honeywell100K # see src/modules/tools/temperaturecontrol/TemperatureControl.cpp:64 for a list of valid thermistor names
69temperature_control.bed.set_m_code 140 #
70temperature_control.bed.set_and_wait_m_code 190 #
71
72# Switch module for fan control
73switch.fan.enable true #
74switch.fan.on_m_code 106 #
75switch.fan.off_m_code 107 #
76switch.fan.output_pin 2.6 #
77
78switch.misc.enable true #
79switch.misc.on_m_code 42 #
80switch.misc.off_m_code 43 #
81switch.misc.output_pin 2.4 #
82
83# Switch module for spindle control
84switch.spindle.enable false #
85
86# Endstops
87alpha_min_endstop 1.24 #
88alpha_max_endstop 1.25 #
89beta_min_endstop 1.26 #
90beta_max_endstop 1.27 #
91gamma_min_endstop 1.28 #
92gamma_max_endstop 1.29 #
93
94# Panel
95panel.enable false #
96panel.up_button_pin 0.1! #
97panel.down_button_pin 0.0! #
98panel.click_button_pin 0.18! #
99panel.encoder_a_pin 0.15! #
100panel.encoder_b_pin 0.17! #
101
102# Only needed on a smoothieboard
103currentcontrol_module_enable true #