Configuration problems
-
I have moved from a old duet 0.8.5 to a duet 2 ethernet. Used the configuration tool and the tweeked some of the parameters to match my old config file.
I have a couple of problems with the web control
1 problem with the temp settings is that the hot end it wont show as active. It goes from off to standby but not active.
Also if I set a temp in standby I cant stop it until it reaches that temp (except emergency stop).
I also sometimes get "generic.heaterStates.disconnected "The bed temp wont show anything other than "generic.heaterStates.disconnected " If I set a temp under active dropdown menu and then click on Bed it does sometimes start heating and show standby but not always.
Other thing I get is I have a extra bed cooling fan configured and when the software starts the fan momentarily starts on high and the goes to 0.I have also just noticed that if I click on either temp on the panel due it goes from red to yellow and the web control shows standby or off.
Anyone have any Idea what is wrong with my config?Config.g
; Configuration file for Duet 0.8.5 (firmware version 1.21)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool v3.3.2 on Thu Sep 02 2021 19:22:19 GMT+0100 (British Summer Time); General preferences
M575 P1 S1 B57600 ; enable support for PanelDue
G90 ; send absolute coordinates...
M83 ; ...but relative extruder moves
M550 P"MiniKossel" ; set printer name
M665 R105.6 L217.29 B85 H250 ; Set delta radius, diagonal rod length, printable radius and homed height
M666 X-26.2 Y-26.2 Z-26.4 ; put your endstop adjustments here, or let auto calibration find them; Network
M540 XXX:XX:XX:XX:XX:XX ; set custom MAC address
M552 P192.168.x.xxx S1 ; enable network and set IP address
M553 P255.255.255.0 ; set netmask
M554 P192.168.x.x ; set gateway
M586 P0 S1 ; enable HTTP
M586 P1 S0 ; disable FTP
M586 P2 S0 ; disable Telnet; Drives
M569 P0 S1 ; physical drive 0 goes forwards
M569 P1 S1 ; physical drive 1 goes forwards
M569 P2 S1 ; physical drive 2 goes forwards
M569 P3 S1 ; physical drive 3 goes forwards
M584 X0 Y1 Z2 E3 ; set drive mapping
M92 X80.00 Y80.00 Z80.00 E663.00 ; set steps per mm
M566 X1200.00 Y1200.00 Z1200.00 E1200.00 ; set maximum instantaneous speed changes (mm/min)
M203 X20000.00 Y20000.00 Z20000.00 E3600.00 ; set maximum speeds (mm/min)
M201 X1000.00 Y1000.00 Z1000.00 E1000.00 ; set accelerations (mm/s^2)
M906 X1000 Y1000 Z1000 E450 I60 ; set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout; Axis Limits
M208 Z-0.1 S1 ; set minimum Z; Endstops
M574 X2 Y2 Z2 S1 ; set active high endstops; Z-Probe
M558 P1 H10 F120 T2400 ; set Z probe type to unmodulated and the dive height + speeds
G31 P500 X0 Y0 Z1.73 ; set Z probe trigger value, offset and trigger height
M557 R85 S20 ; define mesh grid; Heaters
M305 P0 T100000 B3950 R4700 ; set thermistor + ADC parameters for heater 0
M143 H0 S120 ; set temperature limit for heater 0 to 120C
M305 P1 T100000 B4388 R4700 ; set thermistor + ADC parameters for heater 1
M143 H1 S280 ; set temperature limit for heater 1 to 280C; Fans
M106 P0 S0 I0 F500 H-1 C"Part Clg" ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S0 I0 F500 H-1 C"Bed Clg" ; set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned off -
@dave-parry
Yeah it appears you need to convert your heater and end stops to the proper rrf 3.0+ syntax unless you go to v 2.03/2.05A few things have changed...
M305 is no longer used -
Thanks, I did use the latest config tool so would have thought it would be correct. Will see if I can sort it out.
-
I'm on my phone and can't post my config. But in the post adjacent to yours mentioning print finished.....You can look at my config of the end stops for a refrence
Edit. If you look at the first post config. G you will see I left all of my earlier 2.03 syntax settings and configurations but they are commented out. That was from all of my work converting to the new system and it might prove helpful for you as it has for me. The config. G lower on in the thread is after I did some house cleaning got rid of all of the extraneous lines
-
Cant seem to get the config correct Keep getting unknown channel.
Old config was
M305 P0 T100000 B3950 R4700 ; set thermistor + ADC parameters for heater 0
M143 H0 S120 ; set temperature limit for heater 0 to 120C
M305 P1 T100000 B4388 R4700 ; set thermistor + ADC parameters for heater 1Have tried various settings
latest one was
M308 S0 P"e0temp" Y"thermistor" T100000 B4725 ; configure sensor 1 as thermistor on pin e0temp
M950 H0 C"e0temp" T0get Error: Temperature reading fault on heater 1: unknown temperature sensor channel
also tried
M308 S0 P"e0temp" Y"thermistor" T100000 B3950 ; define E0 temperature sensor
M950 H0 C"e0heat" T0 ; heater 1 uses the e0heat pin and sensor 1
Error: Temperature reading fault on heater 1: unknown temperature sensor channel -
@dave-parry said in Configuration problems:
Cant seem to get the config correct Keep getting unknown channel.
Old config was
M305 P0 T100000 B3950 R4700 ; set thermistor + ADC parameters for heater 0
M143 H0 S120 ; set temperature limit for heater 0 to 120C
M305 P1 T100000 B4388 R4700 ; set thermistor + ADC parameters for heater 1Have tried various settings
latest one was
M308 S0 P"e0temp" Y"thermistor" T100000 B4725 ; configure sensor 1 as thermistor on pin e0temp
M950 H0 C"e0temp" T0get Error: Temperature reading fault on heater 1: unknown temperature sensor channel
also tried
M308 S0 P"e0temp" Y"thermistor" T100000 B3950 ; define E0 temperature sensor
M950 H0 C"e0heat" T0 ; heater 1 uses the e0heat pin and sensor 1
Error: Temperature reading fault on heater 1: unknown temperature sensor channelYou are showing code for heater 0 but the error is for heater 1.
What is the code for heater 1?
Frederik
-
here's the code for both
M308 S0 P"bed_temp" Y"thermistor" T100000 B3950 ; define bed temperature sensor
M308 S1 P"e0temp" Y"thermistor" T100000 B4388 ; define E0 temperature sensor
M950 H0 C"bed_heat" T0 ; heater 0 uses the bed_heat pin, sensor 0
M950 H1 C"e0heat" T1 ; heater 1 uses the e0heat pin and sensor 1Still have error heater 1
both still showing 2000 °CJust changed back to old settings and temps are correct so not a sensor problem.
-
@dave-parry said in Configuration problems:
here's the code for both
M308 S0 P"bed_temp" Y"thermistor" T100000 B3950 ; define bed temperature sensor
M308 S1 P"e0temp" Y"thermistor" T100000 B4388 ; define E0 temperature sensor
M950 H0 C"bed_heat" T0 ; heater 0 uses the bed_heat pin, sensor 0
M950 H1 C"e0heat" T1 ; heater 1 uses the e0heat pin and sensor 1Still have error heater 1
both still showing 2000 °CThanks.
Just changed back to old settings and temps are correct so not a sensor problem.
What do you mean by "changed back to old settings"?
Frederick
-
I checked the sensors by removing M308 and M960 lines and put back M305 lines. and the sensor readings were back and correct.
-
@dave-parry said in Configuration problems:
I checked the sensors by removing M308 and M960 lines and put back M305 lines. and the sensor readings were back and correct.
What firmware version are you running?
Frederick
-
WiFi/Ethernet 2.05.1 (2020-02-09b1)
(Thought I had upgraded to Release 3.4.0 beta 3
but it seems that for some reason it hasn't worked.)Duet Web Control 3.3.0
Will try again
-
Just tried again and the machine specific tab still says 2.05
-
@dave-parry said in Configuration problems:
WiFi/Ethernet 2.05.1 (2020-02-09b1)
(Thought I had upgraded to Release 3.4.0 beta 3
but it seems that for some reason it hasn't worked.)Duet Web Control 3.3.0
Will try again
Remember that you have to first go from 2.05.1 to 3.0.0
Frederick
-
Tried 3.1 combined.bin Cant seem to upload it.
-
@dave-parry said in Configuration problems:
Tried 3.1 combined.bin Cant seem to upload it.
3.1?
So you got it up to 3.0 already?
Frederick
-
No I hadnt but have now. When I looked down the list 3.1 was above 2.05 and 3.0 was below and I didnt see it.
-
@dave-parry said in Configuration problems:
No I hadnt but have now. When I looked down the list 3.1 was above 2.05 and 3.0 was below and I didnt see it.
You now should be able to go to 3.3.0 or (if you ok with betas) to 3.4.x.
Frederick
-
Thanks Frederick.
Cant get 3.4 to install. Get Error: In-application programming binary "Duet2CombinedIAP.bin" not foundTemps are working now but still have problem that cant set heaters to active
Have tried all the way back to 3.2. Same error message
-
Got it done now at WiFi/Ethernet 3.4.0beta3 (2021-08-24)
-
This post is deleted!