[SOLVED]Nothing happens when i press the extrude button?!
-
Hello,
I am trying to get my extruder to extrude. I have it set up on the E0 stepper, and everything is up to temp. When i press extrude, nothing happens. This is a problem for me.
When i look at the "machine settings" section of the websever, it says that the endstop for the extruder is active (i think that might have something to do with it not extruding) but i can't figure out how to get rid of that issue?
I tried:
M574 X2 Y2 Z2 E0 S1 //E for extruder, and 0 for no endstop
and
M574 X2 Y2 Z2 S1 E S0 // S0 to switch the extruder endstop from Active High to Active Low (no dice)
; Configuration file for Mini Kossel kit from Think3DPrint3D for testing Duet WiFi ; Communication and general M111 S0 ; Debug off M552 S1 M550 Mr. Green Romax ; Machine name and Netbios name (can be anything you like) M551 easySqueeze ; Machine password (used for FTP) ;*** If you have more than one Duet on your network, they must all have different MAC addresses, so change the last digits M540 P0xBE:0xEF:0xDE:0xAD:0xFE:0xED ; MAC Address ;*** Wifi Networking M555 P2 ; Set output to look like Marlin M575 P1 B57600 S1 ; Comms parameters for PanelDue G21 ; Work in millimetres G90 ; Send absolute coordinates... M83 ; ...but relative extruder moves ; Axis and motor configuration M569 P0 S1 ; Drive 0 goes forwards M569 P1 S0 ; Drive 1 goes forwards M569 P2 S1 ; Drive 2 goes forwards M569 P3 S1 ; Drive 3 goes forwards M569 P4 S1 ; Drive 4 goes forwards M574 X2 Y2 Z2 E0 S1 ; set endstop configuration (all endstops at high end, active high) ;*** The homed height is deliberately set too high in the following - you will adjust it during calibration M665 R144.6 L290.8 B85 H375 ; set delta radius, diagonal rod length, printable radius and homed height M666 X0 Y0 Z0 ; put your endstop adjustments here, or let auto calibration find them M350 X16 Y16 E16 I1 ; Set 16x microstepping with interpolation M92 X82.5 Y82.5 Z82.5 ; Set axis steps/mm M906 X950 Y950 Z950 E1200 I60 ; Set motor currents (mA) and increase idle current to 60% M201 X1000 Y1000 Z1000 E1000 ; Accelerations (mm/s^2) M203 X20000 Y20000 Z20000 E3600 ; Maximum speeds (mm/min) M566 X1200 Y1200 Z1200 E1200 ; Maximum instant speed changes mm/minute ; Thermistors M305 P0 T100000 B5500 R4700 H30 L0 ; Put your own H and/or L values here to set the bed thermistor ADC correction M305 P1 T100000 B4388 R4700 H30 L0 ; Put your own H and/or L values here to set the first nozzle thermistor ADC correction M305 P2 T100000 B6000 R4700 H30 L0 ; Put your own H and/or L values here to set the second nozzle thermistor ADC correction M307 H1 A140.6 C160.8 D25.3 B0 S0.45;PIbD setting for hot end M306 H0 A84.4 C827.3 D30.9 B0 S1 ;PID settting for heat bed M570 S180 ; Hot end may be a little slow to heat up so allow it 180 seconds ; Fans M106 P1 T45 H1 ; disable thermostatic mode for fan 1 ; Tool definitions M563 P0 D0 H1 ; Define tool 0 G10 P0 S0 R0 ; Set tool 0 operating and standby temperatures ;*** If you have a single-nozzle build, comment the next 2 lines ;M563 P1 D1 H2 ; Define tool 1 ;G10 P1 S0 R0 ; Set tool 1 operating and standby temperatures M92 E0:492.45 ; Set extruder steps per mm ; Z probe and compensation definition ;*** If you have a switch instead of an IR probe, change P1 to P4 in the following M558 command M558 P1 X0 Y0 Z0 ; Z probe is an IR probe and is not used for homing any axes G31 X0 Y-8 Z2.44 P500 ; Set the zprobe height and threshold (put your own values here) ;*** If you are using axis compensation, put the figures in the following command M556 S78 X0 Y0 Z0 ; Axis compensation here M208 S1 Z-20 ; set minimum Z ; T0 ; select first hot end
-
Ignore the extruder endstop status, it's not relevant.
Assuming you are using the web interface to command extrusion, if you go to the GCode Console page, are there any error messages there?
-
May be my sgusstion it is too easy, but you have heated up the hotend ?
From my knowledge it releases extruding via webinterface above 160 degrees. -
hello,
thanks for the quick replies. Nothing shows up in the terminal (i am using the web interface). I am up to temp (220c).
-
Your M92 in the config file: M92 E0:492.45
Means that your E0 stepper is 0 steps per mm and E1 is 492.45 per mm
I believe what you want is M92 E492.45 -
Thanks, colons always cause a stink
almost time to print all the things!