Post by Rick on Mar 25, 2016 3:00:55 GMT
Connect the E3d cooling fan to the other fan connector on the Azteeg X5 v2(Fan connector 1, one on the left)
With this simple change to the config.txt you can get the e3d fan to turn on once the hotend gets above 50c. It will also turn the fan off once the temp drops below 50c.
Find the following lines and edit as shown.
1. edit the two lines in the first section
2. un-comment all the temperatureswitch lines as below (remove the '#' from the beginning of each line)
3. edit the temperatureswitch.hotend.threshold_temp value to set the temp you want the fan to come on at.
4. Save the file back to the board and power cycle the board.
5. Enjoy the silence!
Once the board boots up the fan should be off. load up your app of choice and heat up the nozzle and see what happens..
Notice the last two lines, it controls how often the board will check for a temp change. So, on heatup the board only checks the temp every 15 seconds, it may take 15 seconds for the fan to come on after reaching 50c. Also on cooldown the board only checks every 60 seconds so it might take that long to shut it off.
With this simple change to the config.txt you can get the e3d fan to turn on once the hotend gets above 50c. It will also turn the fan off once the temp drops below 50c.
Find the following lines and edit as shown.
1. edit the two lines in the first section
2. un-comment all the temperatureswitch lines as below (remove the '#' from the beginning of each line)
3. edit the temperatureswitch.hotend.threshold_temp value to set the temp you want the fan to come on at.
4. Save the file back to the board and power cycle the board.
5. Enjoy the silence!
Once the board boots up the fan should be off. load up your app of choice and heat up the nozzle and see what happens..
Notice the last two lines, it controls how often the board will check for a temp change. So, on heatup the board only checks the temp every 15 seconds, it may take 15 seconds for the fan to come on after reaching 50c. Also on cooldown the board only checks every 60 seconds so it might take that long to shut it off.
switch.misc.enable true # <******* Edit this Line *********>
switch.misc.input_on_command M42 #
switch.misc.input_off_command M43 #
switch.misc.output_pin 1.25 # <******* Edit this Line *********>
# automatically toggle a switch at a specified temperature. Different ones of these may be defined to monitor different temperatures and switch different swithxes
# useful to turn on a fan or water pump to cool the hotend
temperatureswitch.hotend.enable true #
temperatureswitch.hotend.designator T # first character of the temperature control designator to use as the temperature sensor to monitor *********************************
temperatureswitch.hotend.switch misc # select which switch to use, matches the name of the defined switch *
temperatureswitch.hotend.threshold_temp 50.0 # temperature to turn on (if rising) or off the switch * Un-comment these lines
temperatureswitch.hotend.heatup_poll 15 # poll heatup at 15 sec intervals *
temperatureswitch.hotend.cooldown_poll 60 # poll cooldown at 60 sec intervals *********************************