Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    noob help dule z setup

    Scheduled Pinned Locked Moved
    Duet Hardware and wiring
    3
    59
    2.4k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Mobietecundefined
      Mobietec
      last edited by Mobietec

      hi all in need of a bit of help

      im new to duet and i cant seem to get my head aroud this

      trying to setup dule z axes and then duel z aling my problem is i cant seem to get the jist of the coding to set this up

      im using a trony core xy as a start point this is bening upgraded bit by bit it will have 4 z screws by the time i have finished

      im using duet3 6hc board
      bltouch

      any and all help welcome and thank you in advance Richard

      Mobietecundefined 1 Reply Last reply Reply Quote 0
      • Phaedruxundefined
        Phaedrux Moderator
        last edited by

        Have you seen this?

        https://duet3d.dozuki.com/Wiki/Bed_levelling_using_multiple_independent_Z_motors

        What do you have in your config.g, bed.g, homeall.g files right now?

        What firmware version are you using? Send M115 to check.

        Z-Bot CoreXY Build | Thingiverse Profile

        Mobietecundefined 1 Reply Last reply Reply Quote 0
        • Mobietecundefined
          Mobietec @Mobietec
          last edited by

          @mobietec ok here we go with current setup and what i am trying to do
          i have duet 3 main board
          i have bltouch clone for now
          i have an tronxy x5sa chassi
          twin z screws conected sepratley so i can do z aligment
          and 1 extruder

          i wish to run x,y sencerless
          z with bltouch

          size of bed 330x330x400

          bl is conected on io7 as recomeded
          i have heated bed and hot end heat working sort of
          bed heat silcone heat mat by ssr and 24v bed
          i cant configer xy or z propley using standered nema chineas motors for now

          futura upgrades 2 extruders
          3 or 4 lead screws

          1 Reply Last reply Reply Quote 0
          • Mobietecundefined
            Mobietec @Phaedrux
            last edited by Mobietec

            @phaedrux i need to configer basic first i need to get all axies working with bl and sencerless ty
            my gonfig keeps changing at present but this is what i have for now using configerator

            ; bed.g
            ; called to perform automatic bed compensation via G32
            ;
            ; generated by RepRapFirmware Configuration Tool v3.2.3 on Sun May 09 2021 20:06:02 GMT+0100 (British Summer Time)
            M561 ; clear any bed transform
            G29 ; probe the bed and enable compensation

            ; Configuration file for Duet 3 (firmware version 3)
            ; executed by the firmware on start-up
            ;
            ; generated by RepRapFirmware Configuration Tool v3.2.3 on Sun May 09 2021 20:06:02 GMT+0100 (British Summer Time)

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

            ; Network
            M552 P0.0.0.0 S1 ; enable network and acquire dynamic address via DHCP
            M586 P0 S1 ; enable HTTP
            M586 P1 S0 ; disable FTP
            M586 P2 S0 ; disable Telnet

            ; Drives
            M569 P0.0 S1 ; physical drive 0.0 goes forwards
            M569 P0.1 S1 ; physical drive 0.1 goes forwards
            M569 P0.2 S1 ; physical drive 0.2 goes forwards
            M569 P0.3 S1 ; physical drive 0.3 goes forwards
            M569 P0.4 S1 ; physical drive 0.4 goes forwards
            M584 X0.0 Y0.1 Z0.2 E0.3:0.4 ; set drive mapping
            M350 X16 Y16 Z16 E16:16 I1 ; configure microstepping with interpolation
            M92 X80.00 Y80.00 Z400.00 E420.00:420.00 ; set steps per mm
            M566 X900.00 Y900.00 Z60.00 E120.00:120.00 ; set maximum instantaneous speed changes (mm/min)
            M203 X6000.00 Y6000.00 Z180.00 E1200.00:1200.00 ; set maximum speeds (mm/min)
            M201 X500.00 Y500.00 Z20.00 E250.00:250.00 ; set accelerations (mm/s^2)
            M906 X800 Y800 Z800 E800:800 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 X330 Y330 Z400 S0 ; set axis maxima

            ; Endstops
            M574 X1 S3 ; configure sensorless endstop for low end on X
            M574 Y1 S3 ; configure sensorless endstop for low end on Y
            M574 Z2 S2 ; configure Z-probe endstop for high end on Z

            ; Z-Probe
            M950 S0 C"io7.out" ; create servo pin 0 for BLTouch
            M558 P9 C"^io7.in" H5 F120 T6000 ; set Z probe type to bltouch and the dive height + speeds
            M558 H30 ;*** Remove this line after delta calibration has been done and new delta parameters have been saved
            G31 P500 X0 Y0 Z2.5 ; set Z probe trigger value, offset and trigger height
            M557 X15:215 Y15:195 S20 ; define mesh grid

            ; Heaters
            M308 S0 P"temp0" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin temp0
            M950 H0 C"out0" T0 ; create bed heater output on out0 and map it to sensor 0
            M307 H0 R0.612 C635.3 D7.63 S1.00 V24.4 ; disable bang-bang mode for the bed heater and set PWM limit
            M140 H0 ; map heated bed to heater 0
            M143 H0 S120 ; set temperature limit for heater 0 to 120C
            M308 S1 P"temp1" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin temp1
            M950 H1 C"out1" T1 ; create nozzle heater output on out1 and map it to sensor 1
            M307 H1 R3.222 C146.1 D6.93 S1.00 V24.3 ; disable bang-bang mode for heater and set PWM limit
            M143 H1 S280 ; set temperature limit for heater 1 to 280C

            ; Fans
            M950 F0 C"out4" Q500 ; create fan 0 on pin out4 and set its frequency
            M106 P0 S0 H T45 ; set fan 0 value. Thermostatic control is turned on
            M950 F1 C"out5" Q500 ; create fan 1 on pin out5 and set its frequency
            M106 P1 S1 H1 T45 ; set fan 1 value. Thermostatic control is turned on
            M950 F2 C"out6" Q500 ; create fan 2 on pin out6 and set its frequency
            M106 P2 S1 H1 T45 ; set fan 2 value. Thermostatic control is turned on
            M950 F3 C"out7" Q500 ; create fan 3 on pin out7 and set its frequency
            M106 P3 S1 H1 T45 ; set fan 3 value. Thermostatic control is turned on
            M950 F4 C"out8" Q500 ; create fan 4 on pin out8 and set its frequency
            M106 P4 S1 H1 T45 ; set fan 4 value. Thermostatic control is turned on
            M950 F5 C"out9" Q500 ; create fan 5 on pin out9 and set its frequency
            M106 P5 S1 H1 T45 ; set fan 5 value. 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

            ; Miscellaneous
            M501 ; load saved parameters from non-volatile memory
            M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss

            ; homeall.g
            ; called to home all axes
            ;
            ; generated by RepRapFirmware Configuration Tool v3.2.3 on Sun May 09 2021 20:06:02 GMT+0100 (British Summer Time)
            G91 ; relative positioning
            G1 H2 Z5 F6000 ; lift Z relative to current position
            G1 H1 X-335 Y-335 F1800 ; move quickly to X or Y endstop and stop there (first pass)
            G1 H1 X-335 ; home X axis
            G1 H1 Y-335 ; home Y axis
            G1 X5 Y5 F6000 ; go back a few mm
            G1 H1 X-335 F360 ; move slowly to X axis endstop once more (second pass)
            G1 H1 Y-335 ; then move slowly to Y axis endstop
            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

            1 Reply Last reply Reply Quote 0
            • Mobietecundefined
              Mobietec
              last edited by

              ; Configuration file for Duet 3 (firmware version 3)
              ; executed by the firmware on start-up
              ;
              ; generated by RepRapFirmware Configuration Tool v3.2.3 on Sun May 09 2021 20:06:02 GMT+0100 (British Summer Time)

              ; General preferences
              G90 ; send absolute coordinates...
              M83 ; ...but relative extruder moves
              M550 P"Raptor CoreXY" ; set printer name
              M669 K1 ; select CoreXY mode

              ; Network
              M552 P0.0.0.0 S1 ; enable network and acquire dynamic address via DHCP
              M586 P0 S1 ; enable HTTP
              M586 P1 S0 ; disable FTP
              M586 P2 S0 ; disable Telnet

              ; Drives
              M569 P0.0 S1 ; physical drive 0.0 goes forwards
              M569 P0.1 S1 ; physical drive 0.1 goes forwards
              M569 P0.2 S0 ; physical drive 0.2 goes forwards
              M569 P0.3 S1 ; physical drive 0.3 goes forwards
              M569 P0.4 S0 ; physical drive 0.4 goes forwards
              M584 X0.0 Y0.1 Z0.2 E0.3:0.4 ; set drive mapping
              M350 X16 Y16 Z16 E16:16 I1 ; configure microstepping with interpolation
              M92 X80.00 Y80.00 Z400.00 E420.00:420.00 ; set steps per mm
              M566 X900.00 Y900.00 Z60.00 E120.00:120.00 ; set maximum instantaneous speed changes (mm/min)
              M203 X6000.00 Y6000.00 Z180.00 E1200.00:1200.00 ; set maximum speeds (mm/min)
              M201 X500.00 Y500.00 Z20.00 E250.00:250.00 ; set accelerations (mm/s^2)
              M906 X800 Y800 Z800 E800:800 I30 ; set motor currents (mA) and motor idle factor in per cent
              M84 S30 ; Set idle timeout

              ...
              M584 X0 Y1 Z2:4 E3 ; two Z motors connected to driver outputs Z and E1
              M671 X-20:165 Y0:0 S0.5 ; leadscrews at left (connected to Z) and right (connected to E1) of X axis
              M208 X-5:335 Y0:335 ; X carriage moves from -5 to 205, Y bed goes from 0 to 200
              ...
              ; Axis Limits
              M208 X0 Y0 Z0 S1 ; set axis minima
              M208 X330 Y330 Z400 S0 ; set axis maxima

              ; Endstops
              M574 X1 S3 ; configure sensorless endstop for low end on X
              M574 Y1 S3 ; configure sensorless endstop for low end on Y
              M574 Z2 S2 ; configure Z-probe endstop for high end on Z

              ; Z-Probe
              M950 S0 C"io7.out" ; create servo pin 0 for BLTouch
              M558 P9 C"^io7.in" H5 F120 T6000 ; set Z probe type to bltouch and the dive height + speeds
              M558 H30 ;*** Remove this line after delta calibration has been done and new delta parameters have been saved
              G31 P500 X0 Y0 Z2.5 ; set Z probe trigger value, offset and trigger height
              M557 X15:215 Y15:195 S20 ; define mesh grid

              ; Heaters
              M308 S0 P"temp0" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin temp0
              M950 H0 C"out0" T0 ; create bed heater output on out0 and map it to sensor 0
              M307 H0 R0.612 C635.3 D7.63 S1.00 V24.4 ; disable bang-bang mode for the bed heater and set PWM limit
              M140 H0 ; map heated bed to heater 0
              M143 H0 S120 ; set temperature limit for heater 0 to 120C
              M308 S1 P"temp1" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin temp1
              M950 H1 C"out1" T1 ; create nozzle heater output on out1 and map it to sensor 1
              M307 H1 R3.222 C146.1 D6.93 S1.00 V24.3 ; disable bang-bang mode for heater and set PWM limit
              M143 H1 S280 ; set temperature limit for heater 1 to 280C

              ; Fans
              M950 F0 C"out4" Q500 ; create fan 0 on pin out4 and set its frequency
              M106 P0 S0 H T45 ; set fan 0 value. Thermostatic control is turned on
              M950 F1 C"out5" Q500 ; create fan 1 on pin out5 and set its frequency
              M106 P1 S1 H1 T45 ; set fan 1 value. Thermostatic control is turned on
              M950 F2 C"out6" Q500 ; create fan 2 on pin out6 and set its frequency
              M106 P2 S1 H1 T45 ; set fan 2 value. Thermostatic control is turned on
              M950 F3 C"out7" Q500 ; create fan 3 on pin out7 and set its frequency
              M106 P3 S1 H1 T45 ; set fan 3 value. Thermostatic control is turned on
              M950 F4 C"out8" Q500 ; create fan 4 on pin out8 and set its frequency
              M106 P4 S1 H1 T45 ; set fan 4 value. Thermostatic control is turned on
              M950 F5 C"out9" Q500 ; create fan 5 on pin out9 and set its frequency
              M106 P5 S1 H1 T45 ; set fan 5 value. 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

              ; Miscellaneous
              M501 ; load saved parameters from non-volatile memory
              M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss

              droftartsundefined 1 Reply Last reply Reply Quote 0
              • droftartsundefined
                droftarts administrators @Mobietec
                last edited by

                @mobietec said in noob help dule z setup:

                I've posted my config.g for TronXY X5A (earlier version of X5SA): https://forum.duet3d.com/topic/23222/setting-up-duet2-wifi-for-tronxy-x5sa/2?_=1621257336334

                It will be largely the same as yours, except I set X0 Y0 at the centre of the bed, and the different names for pins as I'm using Duet 2 WiFi. I use the standard endstops for homing X and Y, and BLTouch on Z. If your microswitch endstops are still fitted, I'd initially use them until you're comfortable changing to sensorless homing. Sensorless homing will be less precise and repeatable than mechanical endstops, as it takes up to 4 full microsteps to register a stall, whereas endstop triggering is checked on each microstep.

                To get your Core XY motors moving correctly, see: https://duet3d.dozuki.com/Wiki/ConfiguringRepRapFirmwareCoreXYPrinter#Section_Testing_motor_movement

                I'll cover the macros for bed levelling in another post, once you've got the basic movement working.

                If you upgrade the Z, I'd recommend 3-leadscrew rather than 4. See the Jubilee (https://jubilee3d.com/) for an example of a good Z stage. I'd also recommend making any additional extruders independent of the first, either by making it an IDEX, or a toolchanger. Jubilee is a good example of a toolchanger, too.

                Below are notes on your config.g:

                M669 K1                                            ; select CoreXY mode
                

                CoreXY mode is set, which is good!

                M584 X0.0 Y0.1 Z0.2 E0.3:0.4                       ; set drive mapping
                M350 X16 Y16 Z16 E16:16 I1                         ; configure microstepping with interpolation
                M92 X80.00 Y80.00 Z400.00 E420.00:420.00           ; set steps per mm
                M566 X900.00 Y900.00 Z60.00 E120.00:120.00         ; set maximum instantaneous speed changes (mm/min)
                M203 X6000.00 Y6000.00 Z180.00 E1200.00:1200.00    ; set maximum speeds (mm/min)
                M201 X500.00 Y500.00 Z20.00 E250.00:250.00         ; set accelerations (mm/s^2)
                M906 X800 Y800 Z800 E800:800 I30                   ; set motor currents (mA) and motor idle factor in per cent
                

                You have initially set up the printer to have one motor on X, Y and Z, and two E motors. Remove the second E parameter on all of the above. Move the M584 from later on to above this section, replacing the original one.

                ...
                

                Don't put anything that isn't a gcode in the config.g without a ';' comment marker at the beginning.

                M584 X0 Y1 Z2:4 E3                                 ; two Z motors connected to driver outputs Z and E1
                

                Move this up to before the speeds and accelerations.

                > M671 X-20:165 Y0:0 S0.5                            ; leadscrews at left (connected to Z) and right (connected to E1) of X axis
                

                These positions for the leadscrews are almost certainly wrong. You need the position of leadscrews relative to the X0 Y0 point. Mine are at X-90, Y165 and X420, Y165 (with X0 Y0 at front left). However, I wouldn't put these in the config.g, as there are two ways of levelling the bed; with the independent leadscrews, and with the manual adjuster screws.

                M208 X-5:335 Y0:335                               ; X carriage moves from -5 to 205, Y bed goes from 0 to 200
                

                Wrong format for M208, delete.

                M208 X0 Y0 Z0 S1                                   ; set axis minima
                M208 X330 Y330 Z400 S0                             ; set axis maxima
                

                These are fine.

                M574 X1 S3                                         ; configure sensorless endstop for low end on X
                M574 Y1 S3                                         ; configure sensorless endstop for low end on Y
                M574 Z2 S2                                         ; configure Z-probe endstop for high end on Z
                

                Don't run before you can walk. Use the microswitch endstops to start off with. See my config.g. Note I have changed the pins on the microswitches the wires are connected to, to the outside two pins, so they are active-high, which is recommended.

                M558 P9 C"^io7.in" H5 F120 T6000                   ; set Z probe type to bltouch and the dive height + speeds
                

                Remove ^ from the pin name. You only need it if you use 'probe.in', which the Duet 3 doesn't have

                M558 H30                                           ;*** Remove this line after delta calibration has been done and new delta parameters have been saved
                

                Remove this line, not needed for CoreXY. If you initially set up your printer as a delta, make sure you don't have a homedelta.g file in the /sys folder, or that will really mess things up.

                G31 P500 X0 Y0 Z2.5 ; set Z probe trigger value, offset and trigger height
                

                You haven't put in your Z probe offset in X and Y. See https://duet3d.dozuki.com/Wiki/Test_and_calibrate_the_Z_probe

                M557 X15:215 Y15:195 S20                           ; define mesh grid
                

                Mesh bed is likely to be bigger than this, as bed is 330x300.

                M308 S0 P"temp0" Y"thermistor" T100000 B4138       ; configure sensor 0 as thermistor on pin temp0
                
                M308 S1 P"temp1" Y"thermistor" T100000 B4138       ; configure sensor 1 as thermistor on pin temp1
                

                TronXY use standard 100k Epcos thermistors. Change B parameter to B4092 for better temperature accuracy.

                ; Fans
                M950 F0 C"out4" Q500                               ; create fan 0 on pin out4 and set its frequency
                M106 P0 S0 H T45                                   ; set fan 0 value. Thermostatic control is turned on
                M950 F1 C"out5" Q500                               ; create fan 1 on pin out5 and set its frequency
                M106 P1 S1 H1 T45                                  ; set fan 1 value. Thermostatic control is turned on
                M950 F2 C"out6" Q500                               ; create fan 2 on pin out6 and set its frequency
                M106 P2 S1 H1 T45                                  ; set fan 2 value. Thermostatic control is turned on
                M950 F3 C"out7" Q500                               ; create fan 3 on pin out7 and set its frequency
                M106 P3 S1 H1 T45                                  ; set fan 3 value. Thermostatic control is turned on
                M950 F4 C"out8" Q500                               ; create fan 4 on pin out8 and set its frequency
                M106 P4 S1 H1 T45                                  ; set fan 4 value. Thermostatic control is turned on
                M950 F5 C"out9" Q500                               ; create fan 5 on pin out9 and set its frequency
                M106 P5 S1 H1 T45                                  ; set fan 5 value. Thermostatic control is turned on
                

                I'm pretty sure you don't need this many thermostatically controlled fans! Fan 0 should not be thermostatic, anyway, particularly as you have mapped it to Tool 0:

                M563 P0 D0 H1 F0                                   ; define tool 0
                
                M501                                               ; load saved parameters from non-volatile memory
                

                Please post your M501.

                That should be enough to get on with!

                Ian

                Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                Mobietecundefined 1 Reply Last reply Reply Quote 2
                • Mobietecundefined
                  Mobietec @droftarts
                  last edited by

                  @droftarts said in noob help dule z setup:

                  B409

                  rather then delete i have put ; i hope this is ok for now just so i can see my changes im about to try this ty

                  1 Reply Last reply Reply Quote 0
                  • Mobietecundefined
                    Mobietec
                    last edited by

                    ty i have sencerless homing working now on x and y problem with homing z z probe already trigered at start of probing move

                    i have this set op on io7

                    ; Z-Probe
                    M950 S0 C"io7.out" ; create servo pin 0 for BLTouch
                    M558 P9 C"io7.in" H5 F120 T6000 ; set Z probe type to bltouch and the dive height + speeds
                    ;M558 H30 ;*** Remove this line after delta calibration has been done and new delta parameters have been saved
                    G31 P500 X-37.20 Y0 Z2.5 ; set Z probe trigger value, offset and trigger height
                    M557 X15:215 Y15:195 S20 ; define mesh grid

                    ; homez.g
                    ; called to home the Z axis
                    ;
                    ; generated by RepRapFirmware Configuration Tool v3.2.3 on Sun May 09 2021 20:06:02 GMT+0100 (British Summer Time)
                    G91 ; relative positioning
                    G1 H2 Z5 F6000 ; lift Z relative to current position
                    G90 ; absolute positioning
                    G1 X15 Y15 F6000 ; 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 Z5 F100 ; lift Z relative to current position
                    ;G90 ; absolute positioning

                    droftartsundefined 1 Reply Last reply Reply Quote 0
                    • Mobietecundefined
                      Mobietec
                      last edited by

                      M501
                      Warning: Heater 0 appears to be over-powered. If left on at full power, its temperature is predicted to reach 413C

                      heater works ok thou as you asked for M501

                      droftartsundefined 1 Reply Last reply Reply Quote 0
                      • droftartsundefined
                        droftarts administrators @Mobietec
                        last edited by

                        @mobietec sorry, meant post your sys/config_override.g file, as you have M501 in your config.g. This may be overriding settings in your config.g.

                        Ian

                        Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                        Mobietecundefined 1 Reply Last reply Reply Quote 1
                        • Mobietecundefined
                          Mobietec @droftarts
                          last edited by

                          @droftarts ; config-override.g file generated in response to M500 at 2021-05-17 15:30
                          ; This is a system-generated file - do not edit
                          ; Heater model parameters
                          M307 H0 R0.612 C635.254:635.254 D7.63 S1.00 V24.4 B0
                          M307 H1 R3.237 C65.602:65.602 D6.95 S1.00 V24.3 B0
                          ; Workplace coordinates
                          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
                          M486 S-1

                          1 Reply Last reply Reply Quote 0
                          • droftartsundefined
                            droftarts administrators
                            last edited by

                            @mobietec The values in your config_override.g are different from the ones in your config.g. Because you have M501 at the end of config.g, the ones in config_override.g are the ones being used.

                            config.g:

                            M307 H0 R0.612 C635.3 D7.63 S1.00 V24.4 ; disable bang-bang mode for the bed heater and set PWM limit
                            M307 H1 R3.222 C146.1 D6.93 S1.00 V24.3 ; disable bang-bang mode for heater and set PWM limit
                            

                            config_override.g:

                            M307 H0 R0.612 C635.254:635.254 D7.63 S1.00 V24.4 B0
                            M307 H1 R3.237 C65.602:65.602 D6.95 S1.00 V24.3 B0
                            

                            However, the ones in config_override.g look more correct to me; they have two values for the C parameter, which means they were done with the new tuning algorithm which adapts for the part cooling fan. The bed tuning looks the same between them, but the hot end differs a little.

                            Either leave it as it is, or comment out M501 in config.g and copy the M307 values from config_override.g to config.g.

                            Ian

                            Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                            1 Reply Last reply Reply Quote 1
                            • droftartsundefined
                              droftarts administrators @Mobietec
                              last edited by

                              @mobietec said in noob help dule z setup:

                              problem with homing z z probe already trigered at start of probing move

                              BLTouch troubleshooting: https://duet3d.dozuki.com/Wiki/BLTouch_Troubleshooting

                              Normal operation is:

                              1. When the Duet is first powered up, the BLTouch should perform its self test, which is to light up with red light, and extend and retract pin twice. If this doesn't happen, +5V and GND are not connected correctly.
                              2. Send M280 P0 S10 to extend pin. If this doesn't work, check the wiring to the servo pin. Send M280 P0 S90 to retract the pin.
                              3. The sys/deployprobe.g file and the sys/retractprobe.g file should contain the above two commands, one command in each file. Send M401 to extend the pin. If this doesn't work, check your sys/deployprobe.g file contains M280 P0 S10. Send M402 to retract the probe, and if this doesn't work, check sys/retractprobe.g contains M280 P0 S90.
                              4. With the probe retracted, check in DWC the Z-probe value in the Status panel. It should be 0. If it is 1000, check the probe trigger wire (usually white) is connected to the correct input pin.
                              5. Send M401 to extend the pin. VERY lightly, touch the end. The Z-probe reading should go from 0 to 1000. If it goes from 1000 to 0, you need to invert the probe. If it doesn't change, check the wiring again.
                              6. If doing the above triggers the alarm (flashing red), send M280 P0 S160 to release alarm and retract probe.

                              As you're using a clone BLTouch, and there was another thread recently about clones not working properly (see https://forum.duet3d.com/topic/23218/strange-bltouch-behavior-after-update-to-3-3-0-b3), I expect it could be that the output is inverted, and it reads 1000 when not triggered, and 0 when triggered. If so, invert the probe by changing your M558 line to:

                              M558 P9 C"!io7.in" H5 F120 T6000
                              

                              Ian

                              Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                              Mobietecundefined 1 Reply Last reply Reply Quote 1
                              • Mobietecundefined
                                Mobietec @droftarts
                                last edited by

                                @droftarts said in noob help dule z setup:

                                M280 P0 S160

                                i have just ordered proper bltouch will connect it tommrow and go from their also instaling the end stops if you coudld help in the code for this ill add it in would you like the code i have right now many thanks

                                droftartsundefined 1 Reply Last reply Reply Quote 0
                                • droftartsundefined
                                  droftarts administrators @Mobietec
                                  last edited by

                                  @mobietec I have mine set like this:

                                  ; Endstops
                                  M574 X1 S1 P"xstop" ; configure active-high endstop for low end on X via pin xstop
                                  M574 Y1 S1 P"ystop" ; configure active-high endstop for low end on Y via pin ystop
                                  M574 Z0             ; configure Z-probe endstop for low end on Z
                                  

                                  I am using the X and Y endstops, BLTouch on Z. The only physical change is that I have wired them using the outer two pins (of three) on each microswitch, for NC (normally closed, or active high) operation, which is more reliable. I think you won't need to change your homing files much, except comment out any lines related to sensorless homing. See https://duet3d.dozuki.com/Wiki/Connecting_endstop_switches#Section_Microswitch

                                  If you want to post your current config.g for reference (or maybe after you have made the changed to endstops), please do. It would be good if you could use the 'code' tags around long bits of code, like the endstop code in the black box in this post, to make it easier to read. Click the '</>' icon at the top of the post edit window to insert these tags, and paste the code in between.

                                  Ian

                                  Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                                  1 Reply Last reply Reply Quote 0
                                  • Mobietecundefined
                                    Mobietec
                                    last edited by

                                    ok for the next bit nd thank you so much for all your help im slowley learning this i think i need to set the off set propley of the bl touch i have gourn back to clone it seems to be working

                                    when i home the z it works so to speek i need to set the bltouch i di put a -37.6 and a 37.6 with no luck the proble is off the bed the nozzle is correct front left ie nearest to you on left

                                    1 i think i need to set home 0 to center trying to look ant fined out how and tryng to do off set

                                    somtimes i think i bit off more that i can chue with duet3 board its very compleacted for me but the end rerult should be good many thakns

                                    1 Reply Last reply Reply Quote 0
                                    • Phaedruxundefined
                                      Phaedrux Moderator
                                      last edited by

                                      The G30 will just start probing at whatever XY position it's currently at, so you'll need to manually position the probe in the homeall.g and homez.g files so that the probe is where you want it to be before the G30.

                                      G1 X150 Y150 F6000
                                      G30
                                      

                                      Z-Bot CoreXY Build | Thingiverse Profile

                                      Mobietecundefined 1 Reply Last reply Reply Quote 0
                                      • Mobietecundefined
                                        Mobietec
                                        last edited by Mobietec

                                        This post is deleted!
                                        1 Reply Last reply Reply Quote 0
                                        • Mobietecundefined
                                          Mobietec @Phaedrux
                                          last edited by

                                          @phaedrux
                                          @phaedrux my updated config file
                                          i cant get the bltouch to deply now grrr i am trying to look for answers befor i post first i have the bl on io3 now their are two grounds form touch that are wired together sence on io out and triger on ioin

                                          i have checked for contunety lol i cant spell today and i have also tried 3.3 and 5v lines and i have tried diffrent probs still get same

                                          ; Configuration file for Duet 3 (firmware version 3)
                                          ; executed by the firmware on start-up
                                          ;
                                          ; generated by RepRapFirmware Configuration Tool v3.2.3 on Wed May 19 2021 20:59:11 GMT+0100 (British Summer Time)

                                          ; General preferences
                                          ; General preferences
                                          G90 ; send absolute coordinates...
                                          M83 ; ...but relative extruder moves
                                          M550 P"Raptor CoreXY" ; set printer name
                                          M669 K1 ; select CoreXY mode

                                          ; Network
                                          M552 P0.0.0.0 S1 ; enable network and acquire dynamic address via DHCP
                                          M586 P0 S1 ; enable HTTP
                                          M586 P1 S0 ; disable FTP
                                          M586 P2 S0 ; disable Telnet

                                          ; Drives
                                          M569 P0.0 S1 ; physical drive 0.0 goes forwards
                                          M569 P0.1 S1 ; physical drive 0.1 goes forwards
                                          M569 P0.2 S0 ; physical drive 0.2 goes forwards
                                          M569 P0.3 S1 ; physical drive 0.3 goes forwards
                                          M569 P0.4 S0 ; physical drive 0.4 goes forwards
                                          M584 X0.0 Y0.1 Z0.2 E0.3:0.4 ; set drive mapping
                                          M350 X16 Y16 Z16 E16:16 I1 ; configure microstepping with interpolation
                                          M92 X80.00 Y80.00 Z400.00 E440.00:400.00 ; set steps per mm
                                          M566 X900.00 Y900.00 Z60.00 E120.00:60.00
                                          M584 X0 Y1 Z2:4 E3 ; two Z motors connected to driver outputs Z and E1 ; set maximum instantaneous speed changes (mm/min)
                                          ;M671 X-20:220 Y0:0 S0.5 ; leadscrews at left (connected to Z) and right (connected to E1) of X axis
                                          ;M208 X-5:205 Y0:200 ; X carriage moves from -5 to 205, Y bed goes from 0 to 200
                                          M203 X6000.00 Y6000.00 Z180.00 E1200.00:180.00 ; set maximum speeds (mm/min)
                                          M201 X500.00 Y500.00 Z20.00 E250.00:250.00 ; set accelerations (mm/s^2)
                                          M906 X800 Y800 Z800 E800:800 I30 ; set motor currents (mA) and motor idle factor in per cent
                                          M84 S30 ; Set idle timeout

                                          ; Axis Limits
                                          M208 X-165 Y-165 Z0 S1 ; set axis minima
                                          M208 X165 Y165 Z400 S0 ; set axis maxima

                                          ; Endstops
                                          M574 X1 S1 P"io1.in" ; configure active-high endstop for low end on X via pin io1.in
                                          M574 Y1 S1 P"io2.in" ; configure active-high endstop for low end on Y via pin io2.in
                                          M574 Z2 S2 C"io4.in" ; configure Z-probe endstop for low end on Z

                                          ; Z-Probe
                                          M950 S0 C"io4.out" ; create servo pin 0 for BLTouch
                                          M558 P9 C"io4.in" H5 F120 T6000 ; set Z probe type to bltouch and the dive height + speeds
                                          G31 P500 X-30 Y0 Z2.5 ; set Z probe trigger value, offset and trigger height
                                          M557 X-155:130 Y-155:155 P5 ; define mesh grid

                                          ;M558 A10 S0.003 B0 R0.2 ; BLTouch extra settings from Phaedrux
                                          G31 P500 X-37.6 Y0 Z2.5 ; set Z probe trigger value, offset and trigger height
                                          M557 X-155:130 Y-155:155 P5 ; define mesh grid

                                          ; Heaters
                                          M308 S0 P"temp0" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin temp0
                                          M950 H0 C"out0" T0 ; create bed heater output on out0 and map it to sensor 0
                                          M307 H0 R0.612 C635.3 D7.63 S1.00 V24.4 ; disable bang-bang mode for the bed heater and set PWM limit
                                          M140 H0 ; map heated bed to heater 0
                                          M143 H0 S120 ; set temperature limit for heater 0 to 120C
                                          M308 S1 P"temp1" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin temp1
                                          M950 H1 C"out1" T1 ; create nozzle heater output on out1 and map it to sensor 1
                                          M307 H1 R3.322 C149.5 D6.72 S1.00 V24.3 ; disable bang-bang mode for heater and set PWM limit
                                          M143 H1 S280 ; set temperature limit for heater 1 to 280C

                                          ; Fans
                                          M950 F0 C"out4" Q500 ; create fan 0 on pin out4 and set its frequency
                                          M106 P0 S0 H-1 ; set fan 0 value. Thermostatic control is turned off
                                          M950 F1 C"out5" Q500 ; create fan 1 on pin out5 and set its frequency
                                          M106 P1 S1 H1 T45 ; set fan 1 value. Thermostatic control is turned on
                                          M950 F2 C"out6" Q500 ; create fan 2 on pin out6 and set its frequency
                                          M106 P2 S1 H1 T45 ; set fan 2 value. Thermostatic control is turned on
                                          M950 F3 C"out7" Q500 ; create fan 3 on pin out7 and set its frequency
                                          M106 P3 S1 H1 T45 ; set fan 3 value. Thermostatic control is turned on
                                          M950 F4 C"out8" Q500 ; create fan 4 on pin out8 and set its frequency
                                          M106 P4 S1 H1 T45 ; set fan 4 value. 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

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

                                          Phaedruxundefined 2 Replies Last reply Reply Quote 0
                                          • Phaedruxundefined
                                            Phaedrux Moderator
                                            last edited by

                                            Does M401 and M402 work?
                                            Does M280 P0 S10 or M280 P0 S90 work?
                                            What do you have in your deploy and retract macros?
                                            Are those deploy and retract macros located in your /sys/ folder?

                                            Z-Bot CoreXY Build | Thingiverse Profile

                                            Mobietecundefined 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Unless otherwise noted, all forum content is licensed under CC-BY-SA