how the heating control operates
-
This post is deleted! -
@jay_s_uk said in how the heating control operates:
M303 T0 S275
THANKS FOR YOUR HELP, I HAVE SOLVED IT
-
-
-
@luca-Massimiliano
GOOD MORNING I HAVE A Duet 2 WiFi, AFTER THE UPDATE TO THE LATEST VERSION 3.5.2 ON THE DASHBORD, ONCE THE SET HEATER TEMPERATURE HAS BEEN REACHED, THE EXTRUSION CONTROL BAR CANNOT BE USED, INSTEAD THE DISPLAY IF USED GIVES THE FOLLOWING ERROR error: attempting to extrude with no tools selected. here is the config
; Heaters
M308 S0 P"bedtemp" Y"thermistor" T100000 B3950 ; configure sensor 0 as thermistor on pin bedtemp
M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0
M307 H0 B1 S1.00 ; enable bang-bang mode for the bed heater and set PWM limit
M140H0 ; map heated bed to heater 0
M143 H0 S120 ; set temperature limit for heater 0 to 120C
M308 S1 P"e0temp" Y"thermistor" T100000 B4388 ; configure sensor 1 as thermistor on pin e0temp
M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
M143 H1 S280 ; set temperature limit for heater 1 to 280C
M308 S2 P"e1temp" Y"thermistor" T100000 B4388 ; configure sensor 2 as thermistor on pin e1temp
M950 H2 C"e1heat" T2 ; create nozzle heater output on e1heat and map it to sensor 2
M307 H2 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
M143 H2 S280 ; set temperature limit for heater 2 to 280C; Fans
M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
M106 P0 S0 H1 T100 ; set fan 0 value. Thermostatic control is turned on
M950 F1 C"fan1" Q500 ; create fan 1 on pin fan1 and set its frequency
M106 P1 S1 H2 T100 ; set fan 1 value. Thermostatic control is turned on; Tools
M563 P1 S"LUCA1" D0 H1 F0 ; define tool 1
G10 P1 X12.8 Y3.9 Z0 ; set tool 1 axis offsets
G10 P1 R0 S0 ; set initial tool 1 active and standby temperatures to 0C
M563 P2 S"LUCA2" D1 H2 F0 ; define tools 2
G10 P2 X-12.8 Y3.9 Z0 ; set tool 2 axis offsets
G10 P2 R0 S0 ; set initial tool 2 active and standby temperatures to 0C -
@luca-Massimiliano you need a tool to be active.
SendTx
where X is the tool number that you want to drive -
@jay_s_uk
how should I put it in the config -
@luca-Massimiliano you have two tools so it depends which one you want to be active when you first turn on the machine
Either addT1
to the end of the config orT2
-
@jay_s_uk rather T0 or T1?
-
@jay_s_uk
I don't understand in which config .g command should I add t0 and t1? the problem is that the commands on the dashboard and on the duet display are not activated if I send the extrusion error: trying to extrude with no tools selected. -
@luca-Massimiliano just add either T0 or T1 on the end of config.g
-
@oliof he has the tools setup as T1 and T2
@luca-Massimiliano said in how the heating control operates:
; Tools
M563 P1 S"LUCA1" D0 H1 F0 ; define tool 1
G10 P1 X12.8 Y3.9 Z0 ; set tool 1 axis offsets
G10 P1 R0 S0 ; set initial tool 1 active and standby temperatures to 0C
M563 P2 S"LUCA2" D1 H2 F0 ; define tools 2
G10 P2 X-12.8 Y3.9 Z0 ; set tool 2 axis offsets
G10 P2 R0 S0 ; set initial tool 2 active and standby temperatures to 0C -
@jay_s_uk well ok then (-: That'll confuse the average slicer tho
-
@jay_s_uk
I inserted t1 and t2 without anything else and it works, but I never did it in previous versions and it worked anyway, has it been changed in this version? -
@oliof
now I try to send a print with slicer, -
@luca-Massimiliano you shouldn't insert both of them into the config, just one of them.
you can only have one active tool at a time.
and no changes i'm aware of in that area for ages -
@jay_s_uk Now I try again but with a declared tool if activated first the second one doesn't work
-
@luca-Massimiliano
I had version 3.2.2 before and didn't declare the first extruder -
@luca-Massimiliano again, you can only have one tool active at a time. if you want to use the other tool, send its T number in the console.
Your slicer should send "T1" and "T2" when it wants to swap tools -
@jay_s_uk
Could you help me find the extrusion declaration in the manual. -
Could you help me find the extrusion declaration in the manual.
https://docs.duet3d.com/User_manual/Reference/Duet_Web_Control_Manual#tool-control
https://docs.duet3d.com/User_manual/Reference/Duet_Web_Control_Manual#extrusion-controlIan
-
This post is deleted!