Extruder Thermistor in Simplify3D
-
Hello,
I've created a new extruder tool in the Duet Web UI.
Assigned heater 1
Assigned motors 0
Number 1 (is that relevant for anything?The tools in the DUET Web UI also show it, but in Simplify3D I don't get a temperature.
What could be the reason?
-
Heater 1 is the first extruder heater. I presume that is the heater that you are also using for tool 0. If your printer has a mixing or switching hot end, that is correct. There is only one heater, so S3D only displays one. But if your hot end has two separate nozzles and heaters, then I presume you meant to use heater 2 in the second tool.
-
U are right.
Thanks
-
I don't get it.
Extruder is in "Extruder 0" from the Duet
I have created the tool in the following way:
Then I sliced an STL with Simplify:
And if I test it all with the duet then I get the following:
-
Can you post the sliced gcode you're trying to print along with your config.g?
-
0_1553372115966_config (1).g
https://www.file-upload.net/download-13547328/MagnetAnstandshalterW-Schrank.gcode.html
I hope they were the right ones, unfortunately I'm not at home anymore to check that out. -
In your config.g it looks like you have no tools defined.
And in your gcode file, it looks like simplify3d is trying to set the temps for tool5, which explains the invalid tool number.
G90 M82 M106 S0 M140 S60 M190 S60 M104 S198 T5 M109 S198 T5 G28 ; home all axes G92 E0 G1 E-2.0000 F2400 G1 Z0.260 F1002 ; process Process1 ; layer 1, Z = 0.260 T1 ; tool H0.260 W0.342 ; skirt G1 X87.440 Y84.627 F4800 G1 E0.0000 F720 G92 E0 G1 X89.627 Y82.440 E0.1041 F900
-
And why is that?
I didn't set anything of a tool 5 in S3D and in Duet I created the tool. -
I'm not sure. I'm not a simplify 3d user. How did you define the tools?
-
Take a look at the pictures, where always "Werkzeug 1" is written you can choose different ones (0-5)
Which sliver do you use? -
It seems you've added the tools from the DWC then? That could be the issue.
From the DWC manual https://duet3d.dozuki.com/Wiki/Duet_Web_Control_Manual#Section_ToolsTools
Show the configured tools and allows for tools to be added or removed. Currently these additions and removals don't persist through hardware resets so it is recommended to add tools using the M563 G-Code in config.g file as described in Configuring RepRapFirmware for a Cartesian printer.So I would suggest going through that link and adding your tools to config.g so they remain permanently.
I use Slic3r PE and Cura to slice.
-
Hi,
Thanks i will test it. -
So i added this in the config.g
; Tools
M563 P0 D0 H1 ; tool 0 uses extruder drive 0 and heater 1
G10 P0 S0 R0 X0 Y0 ; set tool 0 temperatures and offsetsShouldn't this now also be displayed under Tools in the dashboard?
Cause it doesn't show anything. -
This is what I have in my tools section and it does show up in the DWC tools tab.
M563 P0 S"Titan Aero" D0 H1 ; Define tool 0 (Titan Aero extruder) G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C T0 ; Select first tool
-
ok, I had to disconnect the whole power supply to the board (also USB). Then it worked. Thank you