"Attempting to extrude with no tool selected", and how to set up fans January 01, 2018 01:10PM |
Registered: 5 years ago Posts: 38 |
; Drives M569 P0 S1 ; Drive 0 goes forwards M569 P1 S1 ; Drive 1 goes forwards M569 P2 S1 ; Drive 2 goes forwards M569 P3 S1 ; Drive 3 goes forwards M92 X80 Y80 Z80 E80 ; Set steps per mm M566 X1200 Y1200 Z1200 E1200 ; Set maximum instantaneous speed changes (mm/min) M203 X18000 Y18000 Z18000 E1200 ; Set maximum speeds (mm/min) M201 X1500 Y1500 Z1500 E1000 ; Set accelerations (mm/s^2) ;M906 X800 Y800 Z800 E800 I60 ; Set motor currents (mA) and motor idle factor in per cent, It probably isn't supported in RADDS. M84 S30 ; Set idle timeout ; Heaters M305 P0 T100000 B4138 C0 R4700 ; Set thermistor + ADC parameters for heater 0 M143 H0 S100 ; Set temperature limit for heater 0 to 100C M305 P1 T100000 B4138 C0 R4700 ; Set thermistor + ADC parameters for heater 1 M143 H1 S300 ; Set temperature limit for heater 1 to 300C M570 H1 P30 T10 S120 ; Give more time to heat up M302 P1 ; Allows for Cold Extrusion ; Tools M563 P0 D0 H1 ; Define tool 0 G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets G10 P0 R0 S190 ; Set initial tool 0 active and standby temperatures to 0C ;M563 S1 ; Allows for tool nomenclature compatibility between Slic3r and RepRap (Tools 0&1 vs Tools 1&2)
Re: "Attempting to extrude with no tool selected", and how to set up fans January 01, 2018 01:33PM |
Registered: 9 years ago Posts: 14,646 |
Re: "Attempting to extrude with no tool selected", and how to set up fans January 01, 2018 02:16PM |
Registered: 5 years ago Posts: 38 |
Re: "Attempting to extrude with no tool selected", and how to set up fans January 01, 2018 03:59PM |
Registered: 9 years ago Posts: 14,646 |
const size_t NUM_FANS = 2; const Pin COOLING_FAN_PINS[NUM_FANS] = { 9, 8 }; // Fan 0, Fan 1
Re: "Attempting to extrude with no tool selected", and how to set up fans January 01, 2018 07:16PM |
Registered: 5 years ago Posts: 38 |
Re: "Attempting to extrude with no tool selected", and how to set up fans January 02, 2018 03:33AM |
Registered: 8 years ago Posts: 5,232 |
Re: "Attempting to extrude with no tool selected", and how to set up fans January 02, 2018 03:15PM |
Registered: 5 years ago Posts: 38 |
Re: "Attempting to extrude with no tool selected", and how to set up fans January 03, 2018 03:44AM |
Registered: 8 years ago Posts: 5,232 |
Quote
Lobotomy
And those terminals can be speed controlled?