We are using a duet wifi/paneldue combo and are struggling to sort out how to manually adjust the temperature of the nozzle when on standby, It heats up fine if printing something, but cannot adjust the temperature.
I'm guessing we are missing a line or 2 from the config file?
Here is what we have
; General preferences
M111 S0 ; Debugging off
G21 ; Work in millimetres
G90 ; Send absolute coordinates…
M83 ; ...but relative extruder moves
M555 P2 ; Set firmware compatibility to look like Marlin
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X1200 Y2600 Z990 S0 ; Set axis maxima
; Endstops
M574 X1 Y1 Z1 S0 ; Define active high microswitches
; Drives
M584 Z5 ; Apply custom drive mapping
M569 P0 S1 ; Drive 0 goes forwards
M569 P1 S1 ; Drive 1 goes forwards
M569 P5 S0 R1 T2 ; Drive 2 goes forwards
M569 P3 S0 ; Drive 3 goes forwards
M569 P4 S1 ; Drive 4 goes forwards
M350 X16 Y16 Z10 E16:16 I1 ; Configure microstepping with interpolation
M92 X213.33 Y213.33 Z5000 E418.545:418.545 ; Set steps per mm
M566 X600 Y600 Z50 E120 ; Set maximum instantaneous speed changes (mm/min)
M203 X6600 Y6600 Z400 E1200 ; Set maximum speeds (mm/min)
M201 X100 Y100 Z20 E50 ; Set accelerations (mm/s^2)
M906 X2000 Y2000 Z2000 E1200 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout
; Heaters
M143 S260 ; Set maximum heater temperature to 260C
M140 H-1 ; Disable heated bed
M302 S0 ; always allow extrusion (disable checking)
M305 P1 T100000 B4138 C0 R4700 ; Set thermistor + ADC parameters for heater 1
M305 P2 T100000 B4138 C0 R4700 ; Set thermistor + ADC parameters for heater 2
; Tools
M563 P0 D0 H1 ; Define tool 0
G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C
M563 P1 D1 H2 ; Define tool 1
G10 P1 X0 Y0 Z0 ; Set tool 1 axis offsets
G10 P1 R0 S0 ; Set initial tool 1 active and standby temperatures to 0C
; Network
M552 S0 ; Disable network
; Fans
M106 P0 S0.3 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I0 F500 H1:2 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
M106 P2 S1 I0 F500 H1:2 T45 ; Set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on
; Custom settings are not configured