Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. Shaun
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 64
    • Best 4
    • Controversial 0
    • Groups 0

    Posts made by Shaun

    • RE: Curious problem

      Think i resolved the problem, replaced the Z motor and seems to be working fine now. Recon its time for complete motor replacement from e3d.

      Thanks for the help guys.

      posted in General Discussion
      Shaunundefined
      Shaun
    • Curious problem

      Hello All

      how to best explain....

      So recently my printer started misbehaving on homing z.

      when i hit home z it starts homing, but for some strange reason the z axis stops about 0.5 above where 0 should be. I now literally scrapped all the files on the SD card and deployed it all from scratch. Its causing me to get inconstant levels when i was homing z. I have removed the z-probe and now only have end stops (low end) configured. Printer still stopping @ what it thinks is 0 and not even triggering the end stop by about 0.5mm.

      Is there a way to clear any settings on the board and resetting it to factory defaults. I want to get the end stops working again, the probe has been problematic.

      My Config now.
      ; Configuration file for Duet WiFi (firmware version 2.03)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue Mar 31 2020 16:00:10 GMT+0100 (British Summer Time)

      ; General preferences
      G90 ; send absolute coordinates...
      M83 ; ...but relative extruder moves
      M550 P"My Printer" ; set printer name

      ; Network
      M552 S1 ; enable network
      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
      M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z400.00 E1222.00 ; set steps per mm
      M566 X900.00 Y900.00 Z12.00 E120.00 ; set maximum instantaneous speed changes (mm/min)
      M203 X6000.00 Y6000.00 Z180.00 E1200.00 ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z20.00 E250.00 ; set accelerations (mm/s^2)
      M906 X800 Y800 Z800 E800 I30 ; set motor currents (mA) and motor idle factor in per cent
      M84 S30 ; Set idle timeout

      ; Axis Limits
      M208 X0 Y0 Z0 S1 ; set axis minima
      M208 X230 Y210 Z200 S0 ; set axis maxima

      ; Endstops
      M574 X1 Y1 Z1 S1 ; set active high endstops

      ; Z-Probe
      M558 P0 H5 F120 T6000 ; disable Z probe but set dive height, probe speed and travel speed
      M557 X15:215 Y15:195 S20 ; define mesh grid

      ; Heaters
      M305 P0 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 0
      M143 H0 S120 ; set temperature limit for heater 0 to 120C
      M305 P1 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 1
      M143 H1 S280 ; set temperature limit for heater 1 to 280C

      ; Fans
      M106 P0 S1 I0 F500 H1 T45 ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned on
      M106 P1 S1 I0 F500 H1 T150 ; set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on

      ; Tools
      M563 P0 D0 H1 F0 ; 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

      ; Custom settings are not defined

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Trigger height variations

      Funny you say this, ive got a CR10 and im getting the exact same problem. variation is almost a whole 0.1 on some probes.

      So as a test ive turned the probe off and using my z endstop. Z doesnt trigger cause the printer thinks that z0 is about 0.5 above the z endstop.

      posted in Tuning and tweaking
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      @wilriker Thanks. Cant seem to get z to move down and trigger the endstop. I have loaded a clean config.g file. Its as if a setting is telling z to stop when i gets to 0 which isnt the high of the endstop.

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      Silly question, how do i clear any settings saved to the board memory? Ive made so many changes and think starting from 0 would be a good idea.

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      OK found the following which could be contributing to my problems..

      When i "Home All" Z doesnt stop by hitting the endstop. it doesnt even trigger the endstop. When i "Home Z" the endstop is hit and triggered.

      ; homeall.g
      ; called to home all axes
      ;
      ; generated by RepRapFirmware Configuration Tool v2.0.3 on Fri Sep 13 2019 19:45:33 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z5 F6000 S2 ; lift Z relative to current position
      G1 S1 X-305 Y-305 F2000 ; 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-305 Y-305 F360 ; move slowly to X and Y axis endstops once more (second pass)
      G1 S1 Z-405 F2000 ; move Z down stopping at the endstop
      G90 ; absolute positioning
      G92 Z0 ; set Z to axis minimum (you may want to adjust this)

      ; Uncomment the following lines to lift Z after probing
      G91 ; relative positioning
      G1 S2 Z0 F500 ; lift Z relative to current position
      G90 ; absolute positioning

      ; homez.g
      ; called to home the Z axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2.0.3 on Fri Sep 13 2019 19:45:33 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      ;G1 Z2.5 F6000 S2 ; lift Z relative to current position
      G1 S1 Z-405 F1800 ; move Z down until the endstop is triggered
      G92 Z0 ; 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 Z0 F500 ; lift Z relative to current position
      G90 ; absolute positioning

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      @Phaedrux said in Cura 4.2.1 Config help:

      Your homing files are configured for endstop switch homing and now Z probe homing.

      https://duet3d.dozuki.com/Wiki/ConfiguringRepRapFirmwareCartesianPrinter#Section_Homing_Z_using_a_Z_probe

      Instead of this:

      G1 S1 Z-405 F1800 ; move Z down stopping at the endstop
      G90 ; absolute positioning
      G92 Z0 ; set Z to axis minimum (you may want to adjust this)
      

      You need a G30 command to probe the bed.

      And your BLTouch command should be updated to this:
      M558 P9 H5 F100 T5000 R0.5

      And I assume you've gone through this?
      https://duet3d.dozuki.com/Wiki/Test_and_calibrate_the_Z_probe

      Thanks for the feedback, think i figured it all out shortly after updating this.

      I want to use my endstop and not the probe which seems to be working just fine.

      my issue was that i dont think i hat the hotend touching the bed before starting the calibration. |The result was an offset of 2. i printed the golf marker in rough and super fine without any issues. Will move onto something bigger and update tomorrow.

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      @wilriker said in Cura 4.2.1 Config help:

      @Shaun Can you please post the contents of your homing files then?

      ; homex.g
      ; called to home the X axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2.0.3 on Fri Sep 13 2019 19:45:33 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z2.5 F6000 S2 ; lift Z relative to current position
      G1 S1 X-305 F1800 ; move quickly to X axis endstop and stop there (first pass)
      G1 X5 F6000 ; go back a few mm
      G1 S1 X-305 F360 ; move slowly to X axis endstop once more (second pass)
      G1 Z-2.5 F6000 S2 ; lower Z again
      G90 ; absolute positioning

      ; homey.g
      ; called to home the Y axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2.0.3 on Fri Sep 13 2019 19:45:33 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z2.5 F6000 S2 ; lift Z relative to current position
      G1 S1 Y-305 F1800 ; move quickly to Y axis endstop and stop there (first pass)
      G1 Y5 F6000 ; go back a few mm
      G1 S1 Y-305 F360 ; move slowly to Y axis endstop once more (second pass)
      G1 Z-2.5 F6000 S2 ; lower Z again
      G90 ; absolute positioning

      ; homez.g
      ; called to home the Z axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2.0.3 on Fri Sep 13 2019 19:45:33 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      ;G1 Z2.5 F6000 S2 ; lift Z relative to current position
      G1 S1 Z-405 F1800 ; move Z down until the endstop is triggered
      G92 Z0 ; 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 Z15 F100 ; lift Z relative to current position
      G90 ; absolute positioning

      ; homeall.g
      ; called to home all axes
      ;
      ; generated by RepRapFirmware Configuration Tool v2.0.3 on Fri Sep 13 2019 19:45:33 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z5 F6000 S2 ; lift Z relative to current position
      G1 S1 X-305 Y-305 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-305 Y-305 F360 ; move slowly to X and Y axis endstops once more (second pass)
      G1 S1 Z-405 F1800 ; move Z down stopping at the endstop
      G90 ; absolute positioning
      G92 Z0 ; set Z to axis minimum (you may want to adjust this)

      ; Uncomment the following lines to lift Z after probing
      G91 ; relative positioning
      G1 S2 Z15 F100 ; lift Z relative to current position
      G90 ; absolute positioning

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      morning

      I have checked every measurement now. movement is exact. Layer 1 still seems to be 2mm above.

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      @droftarts said in Cura 4.2.1 Config help:

      M350

      ; Configuration file for Duet WiFi (firmware version 2.03)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v2.0.3 on Fri Sep 13 2019 19:45:33 GMT+0100 (British Summer Time)

      ; General preferences
      G90 ; send absolute coordinates...
      M83 ; ...but relative extruder moves
      M550 P"CR10" ; set printer name

      ; Network
      M552 S1 ; enable network
      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
      M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z4000.00 E1222.00 ; set steps per mm
      M566 X900.00 Y900.00 Z6.00 E120.00 ; set maximum instantaneous speed changes (mm/min)
      M203 X6000.00 Y6000.00 Z180.00 E1200.00 ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z10.00 E250.00 ; set accelerations (mm/s^2)
      M906 X950 Y950 Z950 E950 I30 ; set motor currents (mA) and motor idle factor in per cent
      M84 S30 ; Set idle timeout

      ; Axis Limits
      M208 X0 Y0 Z0 S1 ; set axis minima
      M208 X280 Y280 Z350 S0 ; set axis maxima
      ;M557 X10:280 Y35:270 S12.6 ; Define mesh grid for full bed print
      ;G31 X-43.2 Y31.9 Z2.132 P25

      ; Endstops
      M574 X1 Y1 Z1 S1 ; set active high endstops
      ;M558 P5 X0 Y0 Z1 H7 F500 T4000 ; Set Z Probe to type Switch or Digital output where Z probe connector is used
      ;M31 P25 X0 Y0 Z1 ; Set Z probe trigger value, offset and trigger height

      ; Z-Probe
      ;M574 Z1 S2 ; set endstops controlled by probe
      M307 H7 A-1 C-1 D-1 ; disable heater on PWM channel for BLTouch
      M558 P5 H1 F500 T5000 ; set Z probe type to bltouch and the dive height + speeds
      G31 P25 X8.5 Y-50 Z0.38 ; set Z probe trigger value, offset and trigger height
      M557 X5:205 Y5:205 S10 ; define mesh grid

      ; Heaters
      M307 H0 B0 S1.00 ; disable bang-bang mode for the bed heater and set PWM limit
      M305 P0 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 0
      M143 H0 S120 ; set temperature limit for heater 0 to 120C
      M305 P1 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 1
      M143 H1 S260 ; set temperature limit for heater 1 to 260C

      ;Disable Heater to free up PWM channel
      M307 H7 A-1 C-1 D-1 ; disable heater for BLTouch

      ; Fans
      M106 P0 S1 I0 F500 H1 T45 ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned on
      M106 P1 S1 I0 F500 H1 T150 ; set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on

      ; Tools
      M563 P0 D0 H1 F0 ; 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

      ; Custom settings are not defined
      M501

      10:29:39 AMM92
      Steps/mm: X: 80.000, Y: 80.000, Z: 4000.000, E: 1222.000

      M350

      ; config-override.g file generated in response to M500 at 2019-09-13 22:58
      ; This is a system-generated file - do not edit
      ; Heater model parameters
      M307 H0 A87.8 C796.7 D0.7 S1.00 V12.1 B0
      M307 H1 A419.9 C136.9 D4.1 S1.00 V11.9 B0
      M307 H2 A340.0 C140.0 D5.5 S1.00 V0.0 B0
      M307 H3 A340.0 C140.0 D5.5 S1.00 V0.0 B0
      M307 H4 A340.0 C140.0 D5.5 S1.00 V0.0 B0
      M307 H5 A340.0 C140.0 D5.5 S1.00 V0.0 B0
      M307 H6 A340.0 C140.0 D5.5 S1.00 V0.0 B0
      ;M307 H7 A340.0 C140.0 D5.5 S1.00 V0.0 B0
      G10 L2 P1 X0.00 Y0.00 Z0.00
      G10 L2 P2 X0.00 Y0.00 Z0.00
      G10 L2 P3 X0.00 Y0.00 Z0.00
      G10 L2 P4 X0.00 Y0.00 Z0.00
      G10 L2 P5 X0.00 Y0.00 Z0.00
      G10 L2 P6 X0.00 Y0.00 Z0.00
      G10 L2 P7 X0.00 Y0.00 Z0.00
      G10 L2 P8 X0.00 Y0.00 Z0.00
      G10 L2 P9 X0.00 Y0.00 Z0.00

      Microstepping - X:16(on), Y:16(on), Z:16(on), E:16(on)

      I have checked and when i send a +5 Z moves 5cm up.

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Change the Router Duet WiFi don't work (ok but....)

      I had the same issue, change your wifi security so that you force only WPA2 PSK, dont use mixed mode. You can then use 2 and 5G without any issues.

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      alt text

      Its not pretty

      https://www.dropbox.com/s/5ygyad68k6alaa4/Photo 25-09-2019%2C 07 49 42.jpg?dl=0

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      @burtoogle said in Cura 4.2.1 Config help:

      @Shaun said in Cura 4.2.1 Config help:

      Still struggling to get this resolved, any other ideas i could try? Thinking i should scrap Cura and try something else to see if it resolves the problem.

      Can you please make the entire gcode file available, thanks.

      Hi,
      Here’s a link to “CCR10_Golf_Green_Marker.gcode” in my Dropbox:
      https://www.dropbox.com/s/j82sd95kngk4gjr/CCR10_Golf_Green_Marker.gcode?dl=0

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      Still struggling to get this resolved, any other ideas i could try? Thinking i should scrap Cura and try something else to see if it resolves the problem.

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      Could this be it?

      ;FLAVOR:RepRap
      ;TIME:194
      ;Filament used: 0.0936418m
      ;Layer height: 0.2
      ;MINX:131.371
      ;MINY:132.221
      ;MINZ:0.2
      ;MAXX:148.663
      ;MAXY:148.664
      ;MAXZ:10
      ;Generated with Cura_SteamEngine 4.2.1

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      @grizewald said in Cura 4.2.1 Config help:

      @Shaun said in Cura 4.2.1 Config help:

      M92 X80.00 Y80.00 Z4000.00 E1222.00 ; set steps per mm

      4000 steps per millimetre on Z looks like an order of magnitude too high...

      Aaaahh yes that should be 400. My fat fingers again. Will fix and test.

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      Morning, ok so changed the speed and removed the rim. This time is printed but the layers where way to far apart leading me to the conclusion that my Z steps are way off.

      My Config.g
      ; Configuration file for Duet WiFi (firmware version 2.03) ; executed by the firmware on start-up ; ; generated by RepRapFirmware Configuration Tool v2.0.3 on Fri Sep 13 2019 19:45:33 GMT+0100 (British Summer Time)

      ; General preferences
      G90 ; send absolute coordinates...
      M83 ; ...but relative extruder moves
      M550 P"CR10" ; set printer name

      ; Network
      M552 S1 ; enable network
      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
      M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z4000.00 E1222.00 ; set steps per mm
      M566 X900.00 Y900.00 Z12.00 E120.00 ; set maximum instantaneous speed changes (mm/min)
      M203 X6000.00 Y6000.00 Z180.00 E1200.00 ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z10.00 E250.00 ; set accelerations (mm/s^2)
      M906 X950 Y950 Z950 E950 I30 ; set motor currents (mA) and motor idle factor in per cent
      M84 S30 ; Set idle timeout

      ; Axis Limits
      M208 X0 Y0 Z0 S1 ; set axis minima
      M208 X280 Y280 Z350 S0 ; set axis maxima
      ;M557 X10:280 Y35:270 S12.6 ; Define mesh grid for full bed print
      ;G31 X-43.2 Y31.9 Z2.132 P25

      ; Endstops
      M574 X1 Y1 Z1 S1 ; set active high endstops
      ;M558 P5 X0 Y0 Z1 H7 F500 T4000 ; Set Z Probe to type Switch or Digital output where Z probe connector is used
      ;M31 P25 X0 Y0 Z1 ; Set Z probe trigger value, offset and trigger height

      ; Z-Probe
      ;M574 Z1 S2 ; set endstops controlled by probe
      M307 H7 A-1 C-1 D-1 ; disable heater on PWM channel for BLTouch
      M558 P5 H1 F500 T5000 ; set Z probe type to bltouch and the dive height + speeds
      G31 P25 X8.5 Y-50 Z0.38 ; set Z probe trigger value, offset and trigger height
      M557 X5:205 Y5:205 S10 ; define mesh grid

      ; Heaters
      M307 H0 B0 S1.00 ; disable bang-bang mode for the bed heater and set PWM limit
      M305 P0 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 0
      M143 H0 S120 ; set temperature limit for heater 0 to 120C
      M305 P1 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 1
      M143 H1 S260 ; set temperature limit for heater 1 to 260C

      ;Disable Heater to free up PWM channel
      M307 H7 A-1 C-1 D-1 ; disable heater for BLTouch

      ; Fans
      M106 P0 S1 I0 F500 H1 T45 ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned on
      M106 P1 S1 I0 F500 H1 T150 ; set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on

      ; Tools
      M563 P0 D0 H1 F0 ; 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

      ; Custom settings are not defined
      M501

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      @droftarts said in Cura 4.2.1 Config help:

      @Shaun said in Cura 4.2.1 Config help:

      M203 X6000.00 Y6000.00 Z180.00 E1200.00 ; set maximum speeds (mm/min)
      Your Z axis is limited to 180mm/min (3mm/s), which I think is the stock setting; my Cartesian machine (though dual Z motors) is set the same, and your other motor settings are stock. It may be that you need to test if it can actually do these speeds; it's possible there's more weight on the Z axis, so it actually has to be lower. Or, as you've got 4000 steps per mm (0.5mm pitch on your Z leadscrew, I think), at full speed the motor has to do 6 revolutions per second to move 3mm; it may just not physically be able to do this.

      Try sending G1 Z10 F180 then G1 Z-10 F180 to check movement. If you do this at Z=0, you should be able to see if it returns to the same place. If it doesn't, try lowering the feedrate from F180 until it does move reliably.

      In Cura, the Z Hop speed is set to 10mm/s, which my delta can do, but my Cartesian machine definitely can't! But the config.g setting will limit it to 3mm/s. I don't usually have Z Hop turned on on my Cartesian printer, as the slow Z movement can cause as many, though different, printing problems as having it switched off.

      If this doesn't help, can you upload the gcode as @Danal suggested, then we can see what it's actually doing during a print.

      Ian

      Super, ill try drop the speed and also removing z hop.

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Duet WiFi web interface only half working

      I had the exact same. so this is what i had to do to fix this.

      Check your wifi security on your router. duet doesnt seem to like multi mode authentication. Set your router to WPA2-PSK and your problem should be resolved. It wont drop off and the browser will work fine.

      posted in General Discussion
      Shaunundefined
      Shaun
    • RE: Cura 4.2.1 Config help

      @droftarts here you go

      ; 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
      M350Z16 I0 ; configure microstepping without interpolation
      M350X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z4000.00 E420.00 ; set steps per mm
      M566 X900.00 Y900.00 Z12.00 E120.00 ; set maximum instantaneous speed changes (mm/min)
      M203 X6000.00 Y6000.00 Z180.00 E1200.00 ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z20.00 E250.00 ; set accelerations (mm/s^2)
      M906 X950 Y950 Z950 E950 I30 ; set motor currents (mA) and motor idle factor in per cent
      M84 S30 ; Set idle timeout

      posted in General Discussion
      Shaunundefined
      Shaun