3

Forgive this long-winded post, but I thought it would be helpful to include the back story leading up to a very scary situation on my Ender 3.

I was printing a job and everything started out fine just like it normally does. I'm not sure if it is related, but partway through the job, there was a power dip severe enough to trip the alarm on the UPS my computer is attached to. It didn't seem to affect the job on the printer though. (the printer is not on a UPS)

A little while later I noticed the extruder clicking like there was a jam, and the print had started severely under extruding. The hot end temp was showing around 209 °C, which is about what it was supposed to be, so I figured the nozzle was getting old and had probably gotten something stuck in it. I canceled the job, did a cold pull, then went ahead and replaced the nozzle and restarted the job.

The second run started off looking ok, but the clicking and under extruding soon came back. I stopped the job and was standing there next to the printer trying to figure out what was going on when I noticed it reboot itself. Octoprint showed a message (I can't recall the exact wording) of something to the effect of "your printer reset and the job is probably failed".

Weird. It's never done that before. I hadn't restarted since the power dip, so I thought maybe it was just in a bad state and physically powered everything down to start fresh. But as soon as it powered back up, the heater went active and the hot end started warming up. The status display said the temp was set at 0 °C, but the "current temp" reading was rising. I quickly went into the menus to select "cool down" and couldn't find it. There was no cool-down option on the menu!

By this time the hot end was up to around 270 °C and starting to smoke, so I shut the whole thing down again. I let it sit for a little while and powered up again. Immediately upon receiving power, the heater went active and started heating up again! I'm pretty sure had I not been standing there it would have eventually caught fire and possibly burned down my house!

This is the original Creality board, but I did flash it with Marlin U1.R2.7 maybe a year ago. It has been completely stable since. Thermal runaway protection is enabled (and tested), but I don't think it would have done anything in this scenario since the printer thinks the heater is off (hence the missing cooldown option). Even if it did detect an issue, I'm not sure it would have been able to do anything since it seems to be permanently shorted "on".

Has anyone heard of something like this before? Any idea what might have caused it?

I opened the case and inspected the board for signs of something shorting out or a smoked component, but everything appears normal. I disconnected the heater so I could power up and everything seems to work other than the heater terminals always having power.

Obviously, my trust in this machine has been severely diminished. I already ordered an SKR Mini E3 V2 to replace the Creality board since I had been thinking of upgrading anyway. But I would really like to know what happened so I can assess the probability of it happening again.

Ideally, I would also like to figure out some way of protecting against this happening again in the future and causing a fire when I might not be standing next to the printer next time.

My first thought is some sort of thermal fuse (like the ones in hairdryers) in line with the heater that would "blow" if it gets past a certain temperature. A typical consumer printer should never have a reason to get above 260-270 °C, so it seems appropriate to kill the circuit if it goes beyond that regardless of what the board is telling it to do.

Has anyone tried retrofitting something like that? Are you aware of any printers on the market that include such a feature?

Any suggestions on how to troubleshoot the board to figure out what happened?

agarza
  • 1,334
  • 2
  • 10
  • 30
Steve In CO
  • 859
  • 3
  • 8
  • 18

2 Answers2

3

Your onboard MOSFET has failed, you need to replace the component, yet better the board. It seems the MOSFET isn’t reacting to the signal from the microprocessor, instead it is “always on”.

Note that a MOSFET usually fails short, but can fail open in certain circumstances. See Do MOSFETs usually burn open or closed?.

0scar
  • 32,029
  • 10
  • 59
  • 135
  • Agreed. I think it must have blown the MOSFET. Maybe from the power issue. The new board should be arriving today, so it will soon become irrelevant. Maybe I'll see if I can figure out which component it is on the old board and try replacing it just for practice. I probably still won't trust the old board even if I manage to fix it though. The real question is: how to protect against this sort of failure? – Steve In CO Nov 30 '21 at 16:04
0

My understanding is that the hot end heats until the thermistor signals to the board that it is near/at temperature.

On an Ender V2 with the Meanwell power supply, the unit has thermal runaway protection so if the thermistor fails the board will shut down.

In your case, the failed thermistor never alerts by changing resistance, the board will keep heating the block. So I think you need to pull the thermistor and test its resistance as the temperature changes. Connect it to a multimeter with the Resistance setting, then heat it with a hairdryer.

Another possibility is if a failed print has clogged the nozzle area, and the resulting blob of plastic has broken a wire to the thermister. This might be repairable by soldering.

Thermistors are available as replacement items too, may pay to simply get one along with a spare belt and nozzles.

Criggie
  • 902
  • 4
  • 15
  • 3
    I don't think the thermistor is the issue. The reported temperature is correct and you can watch it rise. A thermistor problem would be the opposite and would be caught by thermal runaway protection. In this case it's heating as soon as the power switch is turned on, before the firmware even finishes booting. By the time the main menu comes up, the hot end is already at around 50 degrees and climbing even though it was never turned on. After a little more research, it sounds like the MOSFETs used to switch the power will often "fail on" when they go bad. That sounds like what happened here. – Steve In CO Nov 29 '21 at 22:36
  • @SteveInCO yeah fair enough - if the controller can read the temperature then the thermistor is probably working fine. Sorry I missed that detail. – Criggie Nov 29 '21 at 23:04