Temprature sensor error unknown temperature sensor channel
-
@bearer said in Temprature sensor error unknown temperature sensor channel:
, run M997 S1 to reflash the wifi module and repeat?
This will likely do it. Sometimes the wifi firmware doesn't flash automatically. Doing it manually is usually enough to get it going.
This happened to me on a recent update and as soon as the wifi was reflashed it acted like nothing happened.
-
When you were doing the initial updates did you upload the zip file as is, or did you extract them and use the M997 S1:0 to flash?
-
@JTM said in Temprature sensor error unknown temperature sensor channel:
i ran M997 S1 it reloaded the firmware, i finally have the blue led on for wifi but now i cant load the Duet web interface? the page is blank? my due panel works but i think the homing code has changed as my zprobe doesnt work it goes to manual?
clear browser cache or visit it in incognite/private window?
alternatively remove SD card form Duet and extract https://github.com/Duet3D/RepRapFirmware/releases/download/3.1.1/DuetWebControl-SD-3.1.1.zip to the www folder on the sd card as described here https://duet3d.dozuki.com/Wiki/Installing_and_Updating_Firmware#Section_Updating_DuetWebControl_files
-
If the web interface wasn't updated along the way with the firmware, you can manually install the DWC files by extracting the DWC zip file into the /www folder on the SD card with your PC.
https://github.com/Duet3D/RepRapFirmware/releases/download/3.1.1/DuetWebControl-SD-3.1.1.zip
-
@Phaedrux i extracted to documents then uploaded the lot from there?
-
The zip files are meant to be uploaded as is. The DWC handles the extraction and firmware installation. This also ensures you have all the required IAP files and DWC files.
When you send M115 what does it say is installed for firmware version?
-
@Phaedrux version 3 now
-
Alright, if 3.0 is installed you should try replacing the DWC files with the zip linked above. That may get you back on track.
Once in the web interface, just upload the whole 3.0 zip file as is to the /sys folder in DWC. Then upload the 3.1.1 zip file. Don't extract them first.
-
@Phaedrux i cant get in the web interface it is just a blank screen? sorry to be such a pain .
-
@Phaedrux said in Temprature sensor error unknown temperature sensor channel:
If the web interface wasn't updated along the way with the firmware, you can manually install the DWC files by extracting the DWC zip file into the /www folder on the SD card with your PC.
https://github.com/Duet3D/RepRapFirmware/releases/download/3.1.1/DuetWebControl-SD-3.1.1.zip
You'll have to do this.
-
@Phaedrux im hopeless at this stuff ! i loaded that file onto the sd card and now i get this message from the web face
Your Duet rejected the HTTP request: page not found
Check that the SD card is mounted and has the correct files in its /www folder -
@JTM said in Temprature sensor error unknown temperature sensor channel:
i loaded that file onto the sd card
you have to upack the zip file
the content of the zip file has to be in the folder www on the sd card
-
@Veti i extracted those files to the sd card www file? is that right?
-
@Veti i switched it on and off and now its working !!!! i have web interface again !
-
now my zprobe doesnt deploy
on the bright side the temp probe is showing temp, but when i tried to heat the hotend i got an error it was too slow.
-
Alright you're getting somewhere.
Have you uploaded the 3.0 and 3.1.1 zip files?
@Phaedrux said in Temprature sensor error unknown temperature sensor channel:
Alright, if 3.0 is installed you should try replacing the DWC files with the zip linked above. That may get you back on track.
Once in the web interface, just upload the whole 3.0 zip file as is to the /sys folder in DWC. Then upload the 3.1.1 zip file. Don't extract them first.
-
@Phaedrux yes mate, when sending the M115 command i now get firmware 3.1.1
-
The heaters will need to be PID tuned. That should get rid of the too slow error.
Here's how: https://duet3d.dozuki.com/Guide/Ender+3+Pro+and+Duet+Maestro+Guide+Part+4:+Calibration/40#s161
For the probe please post your config.g and deployprobe.g and retractprobe.g macros from the /sys folder. Also homeall.g
Copy and paste the text here.
-
@Phaedrux the z probe code
; Z-Probe
M950 S0 C"exp.heater3" ; create servo pin 0 for BLTouch
M558 M558 P9 H5 F100 T2000 ; set Z probe type to bltouch and the dive height + speeds
G31 X0 Y0 Z0 P25 ; set Z probe trigger value, offset and trigger height
M557 X15:215 Y15:195 S20 ; define mesh grid -
@Phaedrux deploy probe M280 P3 S10 I1 ; deploy BLTouch
retract probe M280 P3 S90 I1 ; retract BLTouch
homeall G91 ; relative positioning
G1 H2 Z5 F6000 ; lift Z relative to current position
G1 H1 X-505 Y-455 F3000 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 H2 X5 Y5 F6000 ; go back a few mm
G1 H1 X-505 Y-455 F600 ; move slowly to X and Y axis endstops once more (second pass)
G90 ; absolute positioning
G1 X15 Y15 F6000 ; go to first bed probe point and home Z
G30 ; home Z by probing the bed; Uncomment the following lines to lift Z after probing
;G91 ; relative positioning
;G1 Z5 F100 ; lift Z relative to current position
;G90 ; absolute positioning