Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. jackismad
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 14
    • Best 0
    • Controversial 0
    • Groups 0

    jackismad

    @jackismad

    0
    Reputation
    1
    Profile views
    14
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    jackismad Unfollow Follow

    Latest posts made by jackismad

    • RE: Bed Temp Spike to 2000c when i home

      Thanks! I just found the bad wire. Its broke off the solder to the bed... Annoying but fixable! Thanks again

      posted in Duet Hardware and wiring
      jackismadundefined
      jackismad
    • Bed Temp Spike to 2000c when i home

      Hi,

      I have had my printer running. Been trying to fine tune it etc.
      However, yesterday i tried to print then realised, when i home the axis. My bed thermostat reads 2000 degrees. I haven't had this issue. I've unpluged the bed , checked the wiring and all seems good. Once I've homed it the temp continues to stay at the 2000c

      Anyone encountered this or got any ideas?

      Thank you!

      posted in Duet Hardware and wiring
      jackismadundefined
      jackismad
    • RE: X Not moving when homing

      You, Legend! Its working, Not sure why i changed that, I did look in my console log but the only error is the Z probe failed to deploy, this was made when i emergency stopped.

      posted in Tuning and tweaking
      jackismadundefined
      jackismad
    • RE: X Not moving when homing

      That makes sense! I've changed the value in x for the M557 Command to 56.
      However i still have the same issue. The X Will home, will stay where the endstop is then deploy probe and then Z will lower

      posted in Tuning and tweaking
      jackismadundefined
      jackismad
    • RE: X Not moving when homing

      Hi, They are..

      ; homeall.g
      ; called to home all axes
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Sat Apr 13 2019 16:24:08 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z0 F1500 S2 ; lift Z relative to current position
      G1 S1 X-258 Y-235 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
      G1 X5 Y5 F1500 ; go back a few mm
      G1 S1 X-258 Y-235 F360 ; move slowly to X and Y axis endstops once more (second pass)
      G90 ; absolute positioning
      G1 X20 Y20 F1500 ; 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 S2 Z5 F25 ; lift Z relative to current position
      ;G90 ; absolute positioning

      ; homex.g
      ; called to home the X axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Sat Apr 13 2019 16:24:08 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z5 F1500 S2 ; lift Z relative to current position
      G1 S1 X-258 F1800 ; move quickly to X axis endstop and stop there (first pass)
      G1 X5 F1500 ; go back a few mm
      G1 S1 X-258 F360 ; move slowly to X axis endstop once more (second pass)
      G1 Z-5 F1500 S2 ; lower Z again
      G90 ; absolute positioning

      ; homey.g
      ; called to home the Y axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Sat Apr 13 2019 16:24:08 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z5 F1500 S2 ; lift Z relative to current position
      G1 S1 Y-235 F1800 ; move quickly to Y axis endstop and stop there (first pass)
      G1 Y5 F1500 ; go back a few mm
      G1 S1 Y-235 F360 ; move slowly to Y axis endstop once more (second pass)
      G1 Z-5 F1500 S2 ; lower Z again
      G90 ; absolute positioning

      ; homez.g
      ; called to home the Z axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Sat Apr 13 2019 16:24:08 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z0 F1500 S2 ; lift Z relative to current position
      G90 ; absolute positioning
      G1 X20 Y20 F1500 ; go to first probe point
      G30 ; home Z by probing the bed
      ;
      ;G30 ; Do a single probe to home our Z axis
      ;G90 ; Make sure we are in absolute mode
      ;G1 Z5 F6000 ; Rapidly move the Z axis to Z=10.
      ;
      ; Uncomment the following lines to lift Z after probing
      ;G91 ; relative positioning
      ;G1 S2 Z5 F25 ; lift Z relative to current position
      ;G90 ; absolute positioning

      posted in Tuning and tweaking
      jackismadundefined
      jackismad
    • X Not moving when homing

      Hi Guys, So i have a bit of a weird issue.
      So. I got my printer priting well enough for now. Configured all the motors etc. Got it printing as best i could however because of my BL touch, the printer started printing off center. In a effort to fix this i changed the offset to the z prob in the config from -18 to 18. This resulted in the homing, going to x endstop then dropping. I then have to do a emergency stop before it hits the bed.

      From what i remember this is the only value i changed. I've changed it back to -18, 18, 30, -30 to see what happens and so far its just done nothing bar drop.

      Here is my Config.
      ; General preferences
      G90 ; Send absolute coordinates...
      M83 ; ...but relative extruder moves

      ; Network
      M550 P"Jack" ; Set machine name
      M552 S1 ; Enable network
      ;*** Access point is configured manually via M587
      M586 P0 S1 ; Enable HTTP
      M586 P1 S1 ; Enable FTP
      M586 P2 S0 ; Disable Telnet

      ; Drives
      M569 P0 S0 ; Drive 0 goes forwards
      M569 P1 S0 ; Drive 1 goes forwards
      M569 P2 S1 ; Drive 2 goes backwards
      M569 P3 S1 ; Drive 3 goes forwards
      M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation
      M92 X160.00 Y160.00 Z800.00 E399.04 ; Set steps per mm
      M566 X600.00 Y600.00 Z180.00 E399.04 ; Set maximum instantaneous speed changes (mm/min)
      M203 X6000.00 Y6000.00 Z180.00 E6000.00 ; Set maximum speeds (mm/min)
      M201 X1500.00 Y1500.00 Z100.00 E10000.00 ; Set accelerations (mm/s^2)
      M906 X500.00 Y500.00 Z500.00 E800.00 I30 ; Set motor currents (mA) and motor idle factor in per cent
      M84 S30 ; Set idle timeout

      ; Axis Limits
      M208 X30 Y-10 Z0 S1 ; Set axis minima
      M208 X220 Y220 Z200 S0 ; Set axis maxima

      ; Endstops
      M574 X1 Y1 S0 ; Set active low and disabled endstops

      ; Z-Probe
      M574 Z1 S2 ; Set endstops controlled by probe
      M307 H3 A-1 C-1 D-1 ; Disable heater on PWM channel for BLTouch
      M558 P9 H5 F120 T1500 ; Set Z probe type to bltouch and the dive height + speeds

      G31 P1 X-18 Y0 Z0.679 ; Set Z probe trigger value, offset and trigger height

      M557 X20:200 Y20:200 S40 ; Define mesh grid

      ; Heaters
      M307 H0 B0 S1.00 ; Disable bang-bang mode for the bed heater and set PWM limit
      M305 P0 T100000 B4725 C7.060000e-8 R4700 ; Set thermistor + ADC parameters for heater 0
      M143 H0 S130 ; Set temperature limit for heater 0 to 130C
      M305 P1 T100000 B4725 C7.060000e-8 R4700 ; Set thermistor + ADC parameters for heater 1
      M143 H1 S275 ; Set temperature limit for heater 1 to 275C

      ; Fans
      M106 P0 S0 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
      M106 P1 S1 I0 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on

      ; 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

      ; Automatic power saving
      M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; Set voltage thresholds and actions to run on power loss

      ; Custom settings are not configured

      ; Miscellaneous
      M501 ; Load saved parameters from non-volatile memory
      T0 ; Select first tool

      Thanks for the help

      posted in Tuning and tweaking
      jackismadundefined
      jackismad
    • RE: BL Touch Problem Duet wifi 2

      @phaedrux Fantasic, thank you very much, just going to go through the test page now! I have just relised aswell my Z axis steps per mm is screwed up as 5mm seems more like 50mm!! Ill get this sorted then sort out the trigger height!

      Thanks again for your help!

      posted in Duet Hardware and wiring
      jackismadundefined
      jackismad
    • RE: BL Touch Problem Duet wifi 2

      @phaedrux Yeah sure, here they are, I

      Config.g
      ; Configuration file for Duet WiFi (firmware version 1.21)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Sat Apr 13 2019 16:24:07 GMT+0100 (British Summer Time)

      ; General preferences
      G90 ; Send absolute coordinates...
      M83 ; ...but relative extruder moves

      ; Network
      M550 P"Jack" ; Set machine name
      M552 S1 ; Enable network
      ;*** Access point is configured manually via M587
      M586 P0 S1 ; Enable HTTP
      M586 P1 S1 ; Enable FTP
      M586 P2 S0 ; Disable Telnet

      ; Drives
      M569 P0 S0 ; Drive 0 goes forwards
      M569 P1 S0 ; Drive 1 goes forwards
      M569 P2 S1 ; Drive 2 goes backwards
      M569 P3 S1 ; Drive 3 goes forwards
      M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation
      M92 X160.00 Y160.00 Z8000.00 E100.00 ; Set steps per mm
      M566 X600.00 Y600.00 Z18.00 E300.00 ; Set maximum instantaneous speed changes (mm/min)
      M203 X6000.00 Y6000.00 Z180.00 E6000.00 ; Set maximum speeds (mm/min)
      M201 X1500.00 Y1500.00 Z100.00 E10000.00 ; Set accelerations (mm/s^2)
      M906 X500.00 Y500.00 Z500.00 E800.00 I30 ; Set motor currents (mA) and motor idle factor in per cent
      M84 S30 ; Set idle timeout

      ; Axis Limits
      M208 X-50 Y-10 Z0 S1 ; Set axis minima
      M208 X220 Y220 Z200 S0 ; Set axis maxima

      ; Endstops
      M574 X1 Y1 S0 ; Set active low and disabled endstops

      ; Z-Probe
      M574 Z1 S2 ; Set endstops controlled by probe
      M307 H3 A-1 C-1 D-1 ; Disable heater on PWM channel for BLTouch
      M558 P9 H5 F120 T1500 ; Set Z probe type to bltouch and the dive height + speeds
      G31 P1 X-50 Y0 Z0 ; Set Z probe trigger value, offset and trigger height
      M557 X20:200 Y20:200 S40 ; Define mesh grid

      ; Heaters
      M307 H0 B0 S1.00 ; Disable bang-bang mode for the bed heater and set PWM limit
      M305 P0 T100000 B4725 C7.060000e-8 R4700 ; Set thermistor + ADC parameters for heater 0
      M143 H0 S130 ; Set temperature limit for heater 0 to 130C
      M305 P1 T100000 B4725 C7.060000e-8 R4700 ; Set thermistor + ADC parameters for heater 1
      M143 H1 S275 ; Set temperature limit for heater 1 to 275C

      ; Fans
      M106 P0 S0 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
      M106 P1 S1 I0 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on

      ; 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

      ; Automatic power saving
      M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; Set voltage thresholds and actions to run on power loss

      ; Custom settings are not configured

      ; Miscellaneous
      M501 ; Load saved parameters from non-volatile memory
      T0 ; Select first tool

      homeall.g
      ; homeall.g
      ; called to home all axes
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Sat Apr 13 2019 16:24:08 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z0.5 F1500 S2 ; lift Z relative to current position
      M98 deployprobe.g ; deploy mechanical Z probe
      G1 S1 X-258 Y-235 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
      G1 X5 Y5 F1500 ; go back a few mm
      G1 S1 X-258 Y-235 F360 ; move slowly to X and Y axis endstops once more (second pass)
      G90 ; absolute positioning
      G1 X20 Y20 F1500 ; 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 S2 Z5 F25 ; lift Z relative to current position
      ;G90 ; absolute positioning

      M98 retractprobe.g ; retract mechanical Z probe

      homex.g
      ; homex.g
      ; called to home the X axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Sat Apr 13 2019 16:24:08 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z5 F1500 S2 ; lift Z relative to current position
      G1 S1 X-258 F1800 ; move quickly to X axis endstop and stop there (first pass)
      G1 X5 F1500 ; go back a few mm
      G1 S1 X-258 F360 ; move slowly to X axis endstop once more (second pass)
      G1 Z-5 F1500 S2 ; lower Z again
      G90 ; absolute positioning

      homey.g
      ; homey.g
      ; called to home the Y axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Sat Apr 13 2019 16:24:08 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z5 F1500 S2 ; lift Z relative to current position
      G1 S1 Y-235 F1800 ; move quickly to Y axis endstop and stop there (first pass)
      G1 Y5 F1500 ; go back a few mm
      G1 S1 Y-235 F360 ; move slowly to Y axis endstop once more (second pass)
      G1 Z-5 F1500 S2 ; lower Z again
      G90 ; absolute positioning

      homez.g
      ; homez.g
      ; called to home the Z axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Sat Apr 13 2019 16:24:08 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 Z0 F1500 S2 ; lift Z relative to current position
      G90 ; absolute positioning
      G1 X20 Y20 F1500 ; go to first probe point
      G30 ; home Z by probing the bed

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

      posted in Duet Hardware and wiring
      jackismadundefined
      jackismad
    • RE: BL Touch Problem Duet wifi 2

      Thanks for the reponce.
      I looked at the problem with fresh eyes this morning. I Found in my Homeall.g file it was calling the wrong file on this line.
      M98 deployprobe.g ; deploy mechanical Z probe
      and
      M98 retractprobe.g ; retract mechanical Z probe
      They were both like the old style Pdeployprobe.g/Pretractprobe.g. So i changed this, set the offsets then did a static test where it worked. I then proceeded to do a test, i homed all, it deployed and lowered correctly, when it hit the bed it rose 5. I must have changed a setting somewhere to make it do that.

      The next issue i now face, is after it rises i get a warning where robe.g couldn't be found. I am assuming i am doing something incorrectly and its not searching for the full deployprobe.g or retractprobe.g

      I moved on with doing a static test recommended by @Phaedrux.
      The result was with the probe deployed using the M401, When triggered the pin rises, goes red then the pin drops again with Z-probe reading 0 both times.

      The G30 Test, it does what it is suppose to do, it lowers then when it triggers it rises 5 again. (Need to find that in the config to stop it from doing that)

      I did start the dynamic test to find the trigger height. Which i worked it out to be -0.148 lower then when it triggers. i was going to amend this when i know it is accurate with the static test working first...

      Thanks again

      posted in Duet Hardware and wiring
      jackismadundefined
      jackismad
    • RE: BL Touch Problem Duet wifi 2

      @phaedrux
      I cant seem to do any test on it bar the fact it deploys and retracts. I can't home the z axis to preform a G30 test because the z axis proceeds to just go down past the sensor until i emergency stop then manually lift the z axis.

      posted in Duet Hardware and wiring
      jackismadundefined
      jackismad