Hi, yes I read that but that can't be legal, can it? I can't find any reference to a 6-month warranty for online selling rules. Given the price of the board, you'd expect it to last at least a year or two given the light use it has had. Hopefully, I'll hear from the duet team when they are back at work.
Best posts made by andrewe
-
RE: Duet 2 WiFi wifi dead
Latest posts made by andrewe
-
RE: Duet 2 WiFi wifi dead
@bearer It could have been a bit longer but I tested for continuity between each leg and the pads on the front and back the best I could. I'm going to try and hunt down a spare wifi module just in case
-
RE: Duet 2 WiFi wifi dead
Thanks! hopefully, it will keep going now. I examined it close up and couldn't see a bad solder joint so I'm guessing it was bad solder somewhere in the module.
-
RE: Duet 2 WiFi wifi dead
I managed to fix for now I masked around the wifi module with Kapton tape and gave it a blast with a heat gun for 2 seconds. I've handled it and restarted it a few times and it seems reliable again now.
-
RE: Duet 2 WiFi wifi dead
Hi, David, the board is not dead just the wifi module has stopped working. The wifi just reports as starting all the time although it did work for an hour or so last night. I've read all the forum posts I could find on the issue. I'm in the UK.
-
RE: Duet 2 WiFi wifi dead
Hi, yes I read that but that can't be legal, can it? I can't find any reference to a 6-month warranty for online selling rules. Given the price of the board, you'd expect it to last at least a year or two given the light use it has had. Hopefully, I'll hear from the duet team when they are back at work.
-
Duet 2 WiFi wifi dead
The wifi on my Duet 2 WiFi was intermittent but is now dead I purchased the board directly on 15/11/2018. this is still under warranty, isn't it?
-
RE: Z probe offset always prints in the air.
To be fair the bed is pretty shabby It was an Anet A8 and came bent from new. The bed, 1x end stop and the motors are all that's left now. I have a feeling its too out of true even for mesh compensation but I can see that working watching the z screws constantly moving.
I use a Prusa spring steel sheet with PEI on it, all held in place with magnets and bulldog clips.
I've got a new bed on its way in the post next week but I know how to set the probe up now thanks to yourselves. I think I'll look at different probes and try and get it as close to the nozzle as I can.
Thanks for all your help
All the best Andy -
RE: Z probe offset always prints in the air.
Yes, I was 0.2mm too close to the bed so used the baby stepping to raise the nozzle.
-
RE: Z probe offset always prints in the air.
@phaedrux said in Z probe offset always prints in the air.:
add an X Y move to position the probe where you want the bed probed before you call G30
Thanks for your help I've got a lot further and am actually printing on the bed now I don't understand how to do the X Y move to position the probe where you want the bed probed. If use the baby stepping and added 0.2mm do I need to add or subtract that from the hight I set in the config.g?
I've got soo much to learn about RepRap.
Thanks Andy
-
RE: Z probe offset always prints in the air.
I've got this in my home files now.
; homeall.g
; called to home all axes
;
; generated by RepRapFirmware Configuration Tool v2 on Sun Nov 18 2018 15:41:33 GMT+0000 (Greenwich Mean Time)
G91 ; relative positioning
G1 Z5 F6000 S2 ; lift Z relative to current position
G1 S1 X-235 Y-215 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 X5 Y5 F6000 ; go back a few mm
G1 S1 X-225 Y-215 F360 ; move slowly to X and Y axis endstops once more (second pass)
G1 S1 Z-230 F1800 ; move Z down stopping at the endstop
G90 ; absolute positioning
G30
; Uncomment the following lines to lift Z after probing
;G91 ; relative positioning
;G1 S2 Z0 F100 ; lift Z relative to current position
;G90 ; absolute positioning; homez.g
; called to home the Z axis
;
; generated by RepRapFirmware Configuration Tool v2 on Sun Nov 18 2018 15:41:33 GMT+0000 (Greenwich Mean Time)
G91 ; relative positioning
G1 Z5 F6000 S2 ; lift Z relative to current position
G1 S1 Z3.57 F1800 ; move Z down until the endstop is triggered
G92 Z3.8 ; set Z position to axis minimum (you may want to adjust this); Uncomment the following lines to lift Z after probing
;G91 ; relative positioning
;G1 S2 Z5 F100 ; lift Z relative to current position
;G90 ; absolute positioningMany thanks Andy