1. Got a question or need help troubleshooting? Post to the troubleshooting forum or Search the forums!

Unresolved Bed Not Returning to 0 degrees when printing with SD card

Discussion in 'Troubleshooting' started by Caleb Cangelosi, Feb 11, 2016.

  1. Caleb Cangelosi

    Joined:
    Nov 3, 2015
    Messages:
    71
    Likes Received:
    4
    I have been using my LED Smart Controller to print with a full sized SD card. The print works as intended, but though the extruder returns to 0 degrees when the print is finished, the bed remains at the temperature it was at during the print. That means if I print through the SD card while I'm away from the printer, when it finishes it keeps heating the bed, running electricity unnecessarily. As far as I can tell from the settings, I have selected the option that says "Return to 0 when finished" or something to that effect. I'm exporting the GCode fine, so why is the bed not returning to 0 degrees? Do I need to add a line of GCode before exporting to the SD card?
     
  2. Trama

    Trama Member

    Joined:
    Dec 12, 2015
    Messages:
    152
    Likes Received:
    21
    I have been encountering that problem as well. I Have not found a way to fix it yet


    Sent from my iPhone using Tapatalk
     
  3. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,915
    Likes Received:
    7,338
    Add this to the ENDING GCODE section of your slicer:

    M104 S0 ; make sure the extuder is turned off.
    M140 S0 ; make sure the bed is turned off.
    M84 ; shut down motors.
     
    Trama, Mike Kelly and Caleb Cangelosi like this.
  4. afat08

    afat08 Member

    Joined:
    Jan 9, 2016
    Messages:
    38
    Likes Received:
    2
    If your bed remains at the same print temp then you have a problem, but if it simply is just not going to 0, it probably won't unless your room temp is 0 degrees
     
  5. WheresWaldo

    WheresWaldo Volunteer ( ͠° ͟ʖ ͡°)
    Staff Member

    Joined:
    Feb 18, 2015
    Messages:
    5,905
    Likes Received:
    3,593
    You might also consider raising the nozzle 5 mm then moving the nozzle to one side and then front or back. Here is a copy of what I do in end gcode:
    Code:
    G1 E-5 F300  ;Retract the filament to release some of the pressure
    M104 S0  ;Turn off extruder
    M140 S0  ;Turn off bed
    G1 Z5  ;Raise nozzle up
    G1 X10 Y220  ;Move bed over & forward
    M84  ;Disable motors
    M117 Print Complete  ;Display message on LCD
     

Share This Page