Fan1 dont show
-
@phaedrux said in Fan1 dont show:
Config.g please.
; Configuration file for Duet WiFi (firmware version 1.21)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool v2 on Tue Feb 26 2019 21:31:01 GMT+0000 (Greenwich Mean Time); General preferences
G90 ; Send absolute coordinates...
M83 ; ...but relative extruder moves; Delta Settings
M665 L440.000 R227 H456.0 B185.0 ; Set delta radius, diagonal rod length, printable radius and homed height
M666 X0 Y0 Z0 A0.00 B0.00 ; Put your endstop adjustments here, or let auto calibration find them; Network
M552 S1
M550 P"Anycubic Predator" ; Set machine name
M551 P"" ; Set password
M552 P0.0.0.0 S1 ; Enable network and acquire dynamic address via DHCP
M586 P0 S1 ; Enable HTTP
M586 P1 S0 ; Disable FTP
M586 P2 S0 ; Disable Telnet; Drives
M569 P0 S1 ; Drive 0 goes forwards
M569 P1 S1 ; Drive 1 goes forwards
M569 P2 S1 ; Drive 2 goes forwards
M569 P3 S0 ; Drive 3 goes forwards
M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation
M92 X80.00 Y80.00 Z80.00 E380.45 ; Set steps per mm
M566 X1000 Y1000 Z1000 E1000 ; Set maximum instantaneous speed changes (mm/min)
M203 X12000.00 Y12000.00 Z12000.00 E10000 ; Set maximum speeds (mm/min)
M201 X3000.00 Y3000.00 Z3000.00 E3000.00 ; Set accelerations (mm/s^2)
M906 X1000.00 Y1000.00 Z1000.00 E1000.00 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout; Retraction
M207 S4.0 F5000 R-0.025 T2500 Z0.5 ; Firmware retraction; Axis Limits
M208 Z0 S1 ; Set minimum Z; Endstops
M574 X2 Y2 Z2 S1 ; Set active high endstops; Z-Probe
M558 P4 H3 F120 T6000 ; Set Z probe type to switch and the dive height + speeds
G31 P500 X0 Y0 Z16.0 ; Set Z probe trigger value, offset and trigger height
M557 R115 S20 ; Define mesh grid
G29 S1 ; Load the heightmap; Heaters
M307 H0 A137.8 C533.3 D1.5 V24.3 B0 ; Disable bang-bang mode for the bed heater and set PWM limit
M305 P0 T100000 B4300 C0 R4700 ; Set thermistor + ADC parameters for heater 0
M143 H0 S120 ; Set temperature limit for heater 0 to 120C
M305 P1 T100000 B4300 C0 R4700 ; Set thermistor + ADC parameters for heater 1
M143 H1 S250 ; Set temperature limit for heater 1 to 240C; Fans
M106 P0 S0 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I0 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on; Tools
M563 P0 D0 H1 ; Define tool 0
G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C; Automatic saving after power loss is not enabled
; Custom settings are not configured
M572 D0 S0.1 ; Pressure Advance
;M591 D0 P2 C4 S1 ; Activate filament sensor
M404 N1.75 ; Set for print monitor
M592 D0 A0.07772 B-0.00029 ; Nonlinear extrusion. Set parameters for extruder drive 0; Miscellaneous
M501 ; Load saved parameters from non-volatile memory@phaedrux said in Fan1 dont show:
Config.g please.
-
@tpjensen said in Fan1 dont show:
; Fans
M106 P0 S0 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I0 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned onM106 P0 H-1 controls the Fan0 port and would be for your part cooling fan, which should show up in the DWC as a slider, and be controllable by the slicer in Gcode during a print.
M106 P1 H1 T45 controls the Fan1 port and should be for your hotend fan, it is configured to turn on automatically when the temperature reaches 45c.
https://duet3d.dozuki.com/Wiki/Connecting_and_configuring_fans
-
; Tools
M563 P0 D0 H1 ; Define tool 0Further, this command attaches the Fan0 port to your tool, which should make it controllable via the tool fan slider in the DWC.
-
@phaedrux said in Fan1 dont show:
; Tools
M563 P0 D0 H1 ; Define tool 0Further, this command attaches the Fan0 port to your tool, which should make it controllable via the tool fan slider in the DWC.
I have 2 part cooler 1 hotend cooler
Hotend cooler start when hotend is heated and then only 1 part part cooler turns on with the layer I set it to
-
If you have 2 part cooling fans, how are the connected to the board?
-
-
@phaedrux said in Fan1 dont show:
M106 P0 S0 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
Alright, so you need a M106 command for Fan port 2 similar to the one for fan port 0.
M106 P2 S0 I0 F500 H-1 ; Set fan 2
-
@phaedrux said in Fan1 dont show:
M106 P2 S0 I0 F500 H-1 ; Set fan 2
Do I write that as a extra line ?
-
Yes. Add it below the other 2.
-
@phaedrux said in Fan1 dont show:
Yes. Add it below the other 2.
Done and it worked So now I will make the print again tommorow
Just one thing more how and where do I write M929 P"eventlog.txt" S1 ; start logging to file eventlog.txt
M929 S0 ; stop logging -
And thank you so much for your help
-
@tpjensen said in Fan1 dont show:
@phaedrux said in Fan1 dont show:
Yes. Add it below the other 2.
Done and it worked So now I will make the print again tommorow
Just one thing more how and where do I write M929 P"eventlog.txt" S1 ; start logging to file eventlog.txt
M929 S0 ; stop loggingYou could add the start to config.g and the stop to your slicer end gcode.
Though I question if at this point you actually need it. Logging can also have a negative impact on performance due to the overhead. Best not to use it unless you need it.
-
I dont want to have the M929 running expect if it fails again with the hotend stops heating.
So it is just to see what happens if I get more fails.
-
Okay update
Maybe I have done some wires wrong... Both fans show up in web control and fan0 start on 3 layer like I told it to do i slicer but the other part cooler fan1 dont turn on unless I use the slider in control panel.
Another problem is when fans turn on hot temp fall from 240 to about 230-232 with only the fan0 if I turn fan1 on same time I will get Heater 1 fail. Can it be something about the power to the hotend ?
When fan0 turn on and I wait 1-2 min. and turn fan1 on slowly temp drops but no fail on hotend and after that temp is constand.
-
Ah yes there is one more piece to the config missing. We need to add the extra fan to the tool definition.
M563 P0 D0 H1 ; Define tool 0
Should become
M563 P0:2 D0 H1 ; Define tool 0
That should attach fan0 and fan2 to tool 0
-
To solve the fans cooling the hotend too much you'll have to aim the fans more carefully so they aren't blowing on the heater block.
You can also use a silicone heater block sock to cover it and shield it from the cool air.
And you can also run the PID tuning with the fans running at your regular print speed so that the model can account for the extra cooling of the block.
-
@phaedrux said in Fan1 dont show:
Ah yes there is one more piece to the config missing. We need to add the extra fan to the tool definition.
M563 P0 D0 H1 ; Define tool 0
Should become
M563 P0:2 D0 H1 ; Define tool 0
That should attach fan0 and fan2 to tool 0
Super thank you so much, I'am glad your want to help
-
@phaedrux said in Fan1 dont show:
To solve the fans cooling the hotend too much you'll have to aim the fans more carefully so they aren't blowing on the heater block.
You can also use a silicone heater block sock to cover it and shield it from the cool air.
And you can also run the PID tuning with the fans running at your regular print speed so that the model can account for the extra cooling of the block.
I have made a order now on silicone socks
-
@phaedrux said in Fan1 dont show:
And you can also run the PID tuning with the fans running at your regular print speed so that the model can account for the extra cooling of the block
Okay what is PID tunning and how is this done ?
-