new he280 hotend issues

Discussions related to the Rostock MAX v2
Post Reply
ish311
Plasticator
Posts: 10
Joined: Mon Mar 23, 2015 7:33 pm

new he280 hotend issues

Post by ish311 »

installed new cheapskates and hotend with the premade whip and now i can upload the new firmware and if i don't plug in the hotend the system will fully load if i plug in the hotend it gives me nothing but stays at the first splash screen. at first when the hotend was unpluged i would get my thermresistors reading out but now it just gives me def after about 5 seconds. no idea where to go from here
User avatar
crocky
Printmaster!
Posts: 270
Joined: Tue Aug 12, 2014 6:55 pm
Location: Werribee, Aust

Re: new he280 hotend issues

Post by crocky »

Sounds like you may have got a wire incorrectly installed... Is it wired as the instructions detailed it?
Bob
Rostock Max V2, Ball Cup Arms, New Carriages, HE280, Dampers, PSU Breathing, Simplify 3D, GeckoTek3D, Raspberry Pi3. Duet soon... Kossel Mini still under construction.
Delta's are the way!
ish311
Plasticator
Posts: 10
Joined: Mon Mar 23, 2015 7:33 pm

Re: new he280 hotend issues

Post by ish311 »

As far as I can tell I did wire it correctly but the current instructions do leave a lot to be desired
User avatar
mhackney
ULTIMATE 3D JEDI
Posts: 5412
Joined: Mon Mar 26, 2012 4:15 pm
Location: MA, USA
Contact:

Re: new he280 hotend issues

Post by mhackney »

Please clarify,when you say "plug in the hotend" specifically what do you mean? Do you mean the connector at the HE280 or do you literally mean you unplugged just the hotend connector at the RAMBo side?

If the former, then you should disconnect ALL of the whip connectors at the RAMBo side, test that you can upload and then plug each connector in and test upload after each to isolate the circuit the is either shorting or not connected correctly. If the later then get a magnifier and check the connector that you don't have a strand or two of wire shorting then check at hotend connections, heat cartridge, thermal fuse, etc looking for issues.

Sublime Layers - my blog on Musings and Experiments in 3D Printing Technology and Art

Start Here:
A Strategy for Successful (and Great) Prints

Strategies for Resolving Print Artifacts

The Eclectic Angler
ish311
Plasticator
Posts: 10
Joined: Mon Mar 23, 2015 7:33 pm

Re: new he280 hotend issues

Post by ish311 »

ok isolated boot issue to something in the i2c connection. problem is i don't have any loose wires and re-terminated the connection just to be certain. resistance across all soldered wires is .08 ohms the hotend main power wire is .04 ohms.
User avatar
mhackney
ULTIMATE 3D JEDI
Posts: 5412
Joined: Mon Mar 26, 2012 4:15 pm
Location: MA, USA
Contact:

Re: new he280 hotend issues

Post by mhackney »

Scrutinize the pcb for bridges or other problems. If none, contact support with your findings.

Sublime Layers - my blog on Musings and Experiments in 3D Printing Technology and Art

Start Here:
A Strategy for Successful (and Great) Prints

Strategies for Resolving Print Artifacts

The Eclectic Angler
User avatar
nitewatchman
Printmaster!
Posts: 626
Joined: Thu May 01, 2014 9:51 pm
Location: Birmingham, Alabama

Re: new he280 hotend issues

Post by nitewatchman »

Try flipping the Green and White wires on the Hot End Thermistor. The results may please you.


Gary
User avatar
davec3275
Printmaster!
Posts: 63
Joined: Mon Sep 28, 2015 7:24 am
Location: PA

Re: new he280 hotend issues

Post by davec3275 »

I have the same issue. Everthing is wired according to the documentation and when I turn the printer on the temperature indicators flip to DEF. I am in communication with support but have not determined the issue quite yet.
NorthOfSkepty
Plasticator
Posts: 9
Joined: Fri Mar 28, 2014 3:50 pm

Re: new he280 hotend issues

Post by NorthOfSkepty »

I had a similar issue but it was due to the ambient temperature the printer was in being below 18 degrees C.
ish311
Plasticator
Posts: 10
Joined: Mon Mar 23, 2015 7:33 pm

Re: new he280 hotend issues

Post by ish311 »

flipping the hot end thermresistor helped the boot cycle but still giving the def issue
User avatar
nitewatchman
Printmaster!
Posts: 626
Joined: Thu May 01, 2014 9:51 pm
Location: Birmingham, Alabama

Re: new he280 hotend issues

Post by nitewatchman »

When the screen first changes from the startup screen to the status screen, for just a few seconds temperature should be reported for both thermistors before changing to def. One is likely correct and most likely the bed. The other will likely report -50C which indicates a no signal is being received since -50 is the min default temp of the firmware.

Is the hot end initially reporting a much lower than realistic temperature before showing the def failure?

gary
User avatar
davec3275
Printmaster!
Posts: 63
Joined: Mon Sep 28, 2015 7:24 am
Location: PA

Re: new he280 hotend issues

Post by davec3275 »

For mine, the temp on the thermistor reads somewhere between 5C & 8C before switching to DEF.
nitewatchman wrote:When the screen first changes from the startup screen to the status screen, for just a few seconds temperature should be reported for both thermistors before changing to def. One is likely correct and most likely the bed. The other will likely report -50C which indicates a no signal is being received since -50 is the min default temp of the firmware.

Is the hot end initially reporting a much lower than realistic temperature before showing the def failure?

gary
morgandc
Printmaster!
Posts: 280
Joined: Mon Sep 26, 2016 8:32 pm

Re: new he280 hotend issues

Post by morgandc »

By default anything below 18 will shut down due to potential print quality issues. You will need to either heat the room or adjust your configuration.ini file to allow a lower temperature. Example below, I set mine to 5 rather than 18.


#elif PRINTER == 5 // Rostock MAX v3 w/HE280
#define MIN_EXTRUDER_TEMP 150 // this is the minimum temperature that will allow the extruder to drive filament, lower and it will ignore extruder commands
#define MAXTEMP 290 // this is the max allowable temp the hotend can be set at, any higher will trigger safety's
#define MIN_DEFECT_TEMPERATURE 5 // this is the min temp that will allow the hotend to start heating. Below this it will show as defective to help identify bad thermistors
#define MAX_DEFECT_TEMPERATURE 300 // this is the max temp that wthe printer will throw errors about defective thermistors
#endif
User avatar
davec3275
Printmaster!
Posts: 63
Joined: Mon Sep 28, 2015 7:24 am
Location: PA

Re: new he280 hotend issues

Post by davec3275 »

I will give the min temp change a try. Although my other printer in the same room reads about 15C-20C when the hot end is not heated.
morgandc wrote:By default anything below 18 will shut down due to potential print quality issues. You will need to either heat the room or adjust your configuration.ini file to allow a lower temperature. Example below, I set mine to 5 rather than 18.


#elif PRINTER == 5 // Rostock MAX v3 w/HE280
#define MIN_EXTRUDER_TEMP 150 // this is the minimum temperature that will allow the extruder to drive filament, lower and it will ignore extruder commands
#define MAXTEMP 290 // this is the max allowable temp the hotend can be set at, any higher will trigger safety's
#define MIN_DEFECT_TEMPERATURE 5 // this is the min temp that will allow the hotend to start heating. Below this it will show as defective to help identify bad thermistors
#define MAX_DEFECT_TEMPERATURE 300 // this is the max temp that wthe printer will throw errors about defective thermistors
#endif
ish311
Plasticator
Posts: 10
Joined: Mon Mar 23, 2015 7:33 pm

Re: new he280 hotend issues

Post by ish311 »

fixing the temp low end fixed that half... now when i run the auto level script it does x fine goes to z and does first tap hard and second slams into the bed and keeps going. never stops. sometimes power cycling it and keeping the script running works but that is about 1 in 10 tries. when it goes to y after if it works. however bed is still not leveled by about 3mm on the x-y direction and same on the z direction.
geneb
ULTIMATE 3D JEDI
Posts: 5362
Joined: Mon Oct 15, 2012 12:47 pm
Location: Graham, WA
Contact:

Re: new he280 hotend issues

Post by geneb »

You don't have the hot end active during the probing do you?

g.
Delta Power!
Defeat the Cartesian Agenda!
http://www.f15sim.com - 80-0007, The only one of its kind.
http://geneb.simpits.org - Technical and Simulator Projects
ish311
Plasticator
Posts: 10
Joined: Mon Mar 23, 2015 7:33 pm

Re: new he280 hotend issues

Post by ish311 »

No the hot end is off
User avatar
nitewatchman
Printmaster!
Posts: 626
Joined: Thu May 01, 2014 9:51 pm
Location: Birmingham, Alabama

Re: new he280 hotend issues

Post by nitewatchman »

I initially found that the Bowden tube was exiting the braid too close to the HE and causing the plug to see intermittent contact by pulling it loose. Pierced the braid higher up and problem went away.
ish311
Plasticator
Posts: 10
Joined: Mon Mar 23, 2015 7:33 pm

Re: new he280 hotend issues

Post by ish311 »

moving the bowden tube has solved the problem of the auto calibrate. thanks alot. takes bout 6 inches of tube free from the binder.

edit. nope that didn't work. completely removed the bowden as still having an issue.....
subsoniq
Printmaster!
Posts: 37
Joined: Sun May 04, 2014 11:17 am
Contact:

Re: new he280 hotend issues

Post by subsoniq »

I have the same problem and as the connector doesnt have a locking pin, or any other way of properly locking to the extruder this will fail for all users of the he280 at some point.

Lets beg for a solution to cable tie the connector to the extruder somehow!
ddrumss2112
Noob
Posts: 3
Joined: Fri Jan 02, 2015 7:26 pm

Re: new he280 hotend issues

Post by ddrumss2112 »

If you're using the premade wiring harness I recommend removing the wires from the clamping terminal on the top of the plug (The heater shouldn't be a problem, & it could be a pain to get them back in with any added mass) & either ferruling or tining the ends before reconnecting them to the plug.


I had a really bad intermittent problem with the thermistor shutting off & it turned out to be a really poor job on the plug wiring. (Most of the wires were barely making contact.)
Xenocrates
ULTIMATE 3D JEDI
Posts: 1561
Joined: Wed Sep 23, 2015 2:55 pm

Re: new he280 hotend issues

Post by Xenocrates »

ddrumss2112 wrote:If you're using the premade wiring harness I recommend removing the wires from the clamping terminal on the top of the plug (The heater shouldn't be a problem, & it could be a pain to get them back in with any added mass) & either ferruling or tining the ends before reconnecting them to the plug.


I had a really bad intermittent problem with the thermistor shutting off & it turned out to be a really poor job on the plug wiring. (Most of the wires were barely making contact.)
I personally wouldn't recommend the tining, although with a spring cage connector it's less important than a screw terminal where there's no method to take up any slack if the solder migrates. If necessary to find ferrules locally and avoid ordering them shipped, try the hardware/automotive store for butt-splice connectors, and use either uninsulated ones or remove the insulation.

But it does seem sub-optimal to have no locking mechanism on the wire whip. Perhaps print a new top plate for the assembly that includes little clips? I may take a look at designing one for the heck of it, but if anyone else wants to, that's better than relying on me to do it.
Machines:
Rostock Max V2, Duet .8.5, PT100 enabled E3D V6 and volcano, Raymond style enclosure
Automation Technology 60W laser cutter/engraver
1m X-carve router

Sic Transit Gloria Mundi
01-10011-11111100001
Post Reply

Return to “Rostock MAX v2”