5

My Printrbot simple metal's extruder is jammed and I need to heat it up to unjam it. Unfortunately, the printer does't want to connect to my laptop regardless of the program I'm using (Repetier-Host or Cura 15).

Is there a way to use a micro SD card to heat up the printer hotend but not print anything?

0scar
  • 32,029
  • 10
  • 59
  • 135
Brendan Smith
  • 307
  • 1
  • 2
  • 6

2 Answers2

2

Sure there is. As you use Cura, you can grab any G-code file (you already have) and use it to set hotend temperature (delete the actual printing part from the file) to get something like this:

;FLAVOR:Marlin
;TIME:102
;Filament used: 0.0573674m
;Layer height: 0.2
;Generated with Cura_SteamEngine 3.3.1
; M190 S60 ;-> this sets the bed temperature so we can comment it out
; the next line sets the hotend to 200 degrees Celsius
M104 S200

As every line that starts with a semi-colon is a comment and is ignored by the printer, M104 S200, would be the only line you need in the printout file.

If you're interested in knowing more - look here: G-codes on reprap wiki

0scar
  • 32,029
  • 10
  • 59
  • 135
profesor79
  • 1,922
  • 1
  • 6
  • 24
  • I will try that when I get some free time. Might not be for just over a week, though. Gotta prep for finals. Edit: Just wanted to say thanks for the quick response. :) – Brendan Smith May 07 '18 at 05:59
  • @0scar - ...or rather _an_ answer (don't forget that Brendan posted his own answer). Good point though, and the same applies to [his answer](https://3dprinting.stackexchange.com/questions/5062/how-to-make-walls-thicker-using-meshmixer-or-meshlab/5159#5159) to this question, [How to make walls thicker using meshmixer or meshlab](https://3dprinting.stackexchange.com/questions/5062/how-to-make-walls-thicker-using-meshmixer-or-meshlab). However, the OP is probably still under a lot of stress w.r.t. final exams.:-) – Greenonline Jun 10 '18 at 09:17
  • 1
    @greenonline There was no answer when I posted :) But indeed, final actual solutions are very welcome! – 0scar Jun 10 '18 at 09:21
1

I heated it up and was able to extract some plastic that had gotten jammed in the hot ends opening.

I heated up the hotend by commenting out all the other lines of code in Cura's start and end G-code tabs (must have missed some because the printer moved. I would just unplug the printer when it stopped moving). I used an SD card but it would probably work with USB too. I tried to force the filament in to force the jam out of the hotend, but that did nothing.

I took apart the extruder assembly and discovered that a section of filament that was too wide got stuck in the hotend's entrance. I pulled the filament out using me multitool and put the extruder back together. Hope this helps others with a similar problem.

Greenonline
  • 5,831
  • 7
  • 30
  • 60
Brendan Smith
  • 307
  • 1
  • 2
  • 6
  • 1
    Nice that you answered your own question, and certainly glad that you fixed the problem. (Hope your finals went well as well) But this is not really an answer, it is more a comment. If the other answer helped you to solve this please accept it, if not please elaborate your answer and describe what you actually did to warm it up if different from the other answer (e.g. blow torch or heated on the stove, etc.). – 0scar Jun 09 '18 at 06:18
  • 1
    As @0scar says, please describe how you managed to extract the plastic? Did you do it manually (tweezers, drill bit?), and how did you have to heat the hotend? Did you have to remove the hotend and heat it separately (if so, how and why?) or did you heat it whilst on the printer (and how?)? Did you manage to get the SD card to work, or your USB cable? If so, how did you get either the SD card or USB to work, and what G-codes did you use? A nicely detailed answer could quite possibly help someone else with the same issue, as well as garner more votes. Thanks in advance. – Greenonline Jun 09 '18 at 08:51
  • +1 - Thank you Brendan for updating your answer. Hopefully others will see your updated answer and remove their down votes. I'm glad that your exams when well too! Good Luck! :-) – Greenonline Jul 02 '18 at 20:28
  • Don't forget to mark some of your questions as accepted, using the green tick icon next to the voting buttons, if indeed they have been answered :-) – Greenonline Jul 02 '18 at 20:36