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

    Bltouch setup need help

    Scheduled Pinned Locked Moved
    Firmware installation
    4
    93
    4.1k
    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.
    • Phaedruxundefined
      Phaedrux Moderator
      last edited by

      And take a look at this if you haven't.

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

      Z-Bot CoreXY Build | Thingiverse Profile

      1 Reply Last reply Reply Quote 0
      • Elvis0zundefined
        Elvis0z
        last edited by Elvis0z

        G28
        Error: G0/G1: insufficient axes homed

        Got this error when trying to home z

        Hotend moved a bit then bltouch pin deployed and it stopped. Red light went off and some noise maybe motor, not sure

        JoergS5undefined 1 Reply Last reply Reply Quote 0
        • JoergS5undefined
          JoergS5 @Elvis0z
          last edited by

          @Elvis0z when you try to homez, the homez.g is called and executed, please publish it for check. For homing all axes, run homeall.g

          1 Reply Last reply Reply Quote 0
          • Elvis0zundefined
            Elvis0z
            last edited by

            Here is homez

            ; homez.g
            ; called to home the Z axis
            ;
            ; generated by RepRapFirmware Configuration Tool v3.1.3 on Tue Jun 09 2020 17:58:53 GMT-0700 (Mountain Standard 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

            JoergS5undefined 1 Reply Last reply Reply Quote 0
            • JoergS5undefined
              JoergS5 @Elvis0z
              last edited by JoergS5

              @Elvis0z this is ok. And sorry, I misread, G28 calls homeall.g, my mistake, does not call homez

              I'll recheck your config, whether I see something. You could try exchanging M558 and M950, M558 first for the zprobe definition.

              You should check
              G31 P25 X+41 Y+10 Z0.0
              whether the Z is correct. Please check https://duet3d.dozuki.com/Wiki/Test_and_calibrate_the_Z_probe#Section_Calibrate_the_Z_probe_trigger_height

              1 Reply Last reply Reply Quote 0
              • Elvis0zundefined
                Elvis0z
                last edited by

                Swapped
                M558 and M950
                hotend goes to middle of the bed and deploys probe then probe swiches off I think

                cheers for the help guys

                JoergS5undefined 1 Reply Last reply Reply Quote 0
                • JoergS5undefined
                  JoergS5 @Elvis0z
                  last edited by JoergS5

                  @Elvis0z you should check G31 Z value also, please see my last post above.

                  In homeall I would move the hotend to the middle of the bed before probing Z, instead G1 X15 Y15 F6000 I would call
                  G1 X100 Y100 F6000
                  to be sure you don't probe outside of the bed one day and not triggering (when bed or endstop moved a bit eg).

                  1 Reply Last reply Reply Quote 0
                  • Elvis0zundefined
                    Elvis0z
                    last edited by

                    This was the last error

                    G28
                    Error: Z probe was not triggered during probing move
                    Error: Homing failed

                    JoergS5undefined Phaedruxundefined 2 Replies Last reply Reply Quote 0
                    • JoergS5undefined
                      JoergS5 @Elvis0z
                      last edited by

                      @Elvis0z was your bltouch over the bed and was it deployed?

                      Elvis0zundefined 1 Reply Last reply Reply Quote 0
                      • Elvis0zundefined
                        Elvis0z @JoergS5
                        last edited by

                        @JoergS5 Yes

                        JoergS5undefined 1 Reply Last reply Reply Quote 0
                        • Elvis0zundefined
                          Elvis0z
                          last edited by

                          M401
                          M402
                          Both these commands work

                          1 Reply Last reply Reply Quote 0
                          • JoergS5undefined
                            JoergS5 @Elvis0z
                            last edited by

                            @Elvis0z did it have a bit of distance to the bed? There are some documentation to the installation. The Z height in reference to the nozzle is important.
                            The image right lower on page 1 in the https://locxess.de/3d/BLTouch_Anleitung_englisch.pdf
                            document, the 8mm.

                            1 Reply Last reply Reply Quote 0
                            • Elvis0zundefined
                              Elvis0z
                              last edited by

                              Yep it probes way above the bed.

                              JoergS5undefined 1 Reply Last reply Reply Quote 0
                              • JoergS5undefined
                                JoergS5 @Elvis0z
                                last edited by

                                @Elvis0z can you please republish config and homeall like it is now, so I can recheck?

                                1 Reply Last reply Reply Quote 1
                                • Elvis0zundefined
                                  Elvis0z
                                  last edited by

                                  ; Configuration file for Duet WiFi (firmware version 3)
                                  ; executed by the firmware on start-up
                                  ;
                                  ; generated by RepRapFirmware Configuration Tool v3.1.3 on Tue Jun 09 2020 17:58:51 GMT-0700 (Mountain Standard Time)

                                  ; General preferences
                                  G90 ; send absolute coordinates...
                                  M83 ; ...but relative extruder moves
                                  M550 P"Elvis Oz Tevo Black Widow" ; set printer name

                                  ; Network
                                  ;M551 P"" ; set password
                                  M552 S1 ; enable network
                                  M586 P0 S1 ; enable HTTP
                                  M586 P1 S1 ; enable FTP
                                  M586 P2 S0 ; disable Telnet

                                  ; Drives
                                  M569 P0 S1 ; physical drive 0 goes forwards
                                  M569 P1 S0 ; physical drive 1 goes forwards
                                  M569 P2 S0 ; physical drive 2 goes forwards
                                  M569 P3 S0 ; 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 Z1600.00 E400.00 ; set steps per mm
                                  M566 X500.00 Y500.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 X1000.00 Y1000.00 Z100.00 E1000.00 ; set accelerations (mm/s^2)
                                  M906 X1300 Y1300 Z1200 E1300 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 X360 Y230 Z280 S0 ; set axis maxima

                                  ; 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 Z1 S2 ; configure Z-probe endstop for low end on Z

                                  ; Elvis, The following Z-Probe below is where you will have to configure your BLTouch

                                  ; Z-Probe
                                  M558 P9 C"^zprobe.in" H5 F60 T6000 A10 R0.5
                                  M950 S0 C"exp.heater3"
                                  G31 P25 X+41 Y+10 Z0.0 ; set Z probe trigger value, offset and trigger height
                                  M557 X25:360 Y15:220 S20 ; define mesh bed level

                                  ; Heaters
                                  M308 S0 P"bedtemp" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin bedtemp
                                  M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0
                                  M307 H0 A346.2 C140 D5.3 B0 S2.0 V23.8 ; enable bang-bang mode for the bed heater and set PWM limit
                                  ;M307 H0 B1 S1.00 ; Previous Command
                                  M140 H0 ; map heated bed to heater 0
                                  M143 H0 S120 ; set temperature limit for heater 0 to 120C
                                  M308 S1 P"spi.cs1" Y"rtd-max31865" ; configure sensor 1 as thermistor on pin e0temp
                                  M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
                                  M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
                                  M307 H3 A-1 C-1 D-1 ; Disable the 3rd Heater to free up PWM channel
                                  ; Fans
                                  M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
                                  M106 P0 S0.5 H1 T45 ; Elvis, The S0.5 is setup for a 12V Fan, set fan 0 value. Thermostatic control is turned off
                                  M950 F1 C"fan1" Q500 ; create fan 1 on pin fan1 and set its frequency
                                  M106 P1 S0.20 H-1 ; Elvis, The 0.20 is setup for a 5V Fan, set fan 1 value. Thermostatic control is turned on

                                  ; Tools
                                  M563 P0 D0 H1 F0 ; define tool 0
                                  G10 P0 X0 Y0 Z0.0 ; 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
                                  M575 P1 S1 B115200 ; Elvis, Go into the setup of your PanalDue and set the baud rate to 115200, enable support for PanelDue
                                  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.1.3 on Tue Jun 09 2020 17:58:52 GMT-0700 (Mountain Standard Time)
                                  G91 ; relative positioning
                                  G1 H2 Z5 F6000 ; lift Z relative to current position
                                  G1 H1 X-235 Y-215 F1800 ; 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-235 Y-215 F360 ; move slowly to X and Y axis endstops once more (second pass)
                                  G90 ; absolute positioning
                                  G1 X100 Y100 F6000 ; go to first bed probe point and home Z
                                  G30 ;home Z by probing the bed

                                  JoergS5undefined 1 Reply Last reply Reply Quote 0
                                  • JoergS5undefined
                                    JoergS5 @Elvis0z
                                    last edited by

                                    @Elvis0z to be sure: your BLtouch is right and behind the nozzle?

                                    1 Reply Last reply Reply Quote 0
                                    • Elvis0zundefined
                                      Elvis0z
                                      last edited by

                                      Yep right and behind

                                      JoergS5undefined 1 Reply Last reply Reply Quote 0
                                      • JoergS5undefined
                                        JoergS5 @Elvis0z
                                        last edited by JoergS5

                                        @Elvis0z are you sure G31 Z is 0? This would mean the BLtouch triggers when the nozzle touches the bed.
                                        Please recheck steps 5-7 in https://duet3d.dozuki.com/Wiki/Test_and_calibrate_the_Z_probe#Section_Calibrate_the_Z_probe_trigger_height . You could trial and error some values for Z also... (Z positive) - I would do that 😉

                                        I don't see other problems, I would only remove the + signs from
                                        G31 P25 X+41 Y+10 Z0.0
                                        they will probably be interpreted correctly, but I didn't see + signs in the examples, so to be sure, I would remove them.

                                        1 Reply Last reply Reply Quote 0
                                        • Elvis0zundefined
                                          Elvis0z
                                          last edited by

                                          I cant go down on the z
                                          As it won't home z
                                          Should I just manually move the hotend to the bed

                                          JoergS5undefined 2 Replies Last reply Reply Quote 0
                                          • JoergS5undefined
                                            JoergS5 @Elvis0z
                                            last edited by JoergS5

                                            @Elvis0z you can of course move Z carefully down with the small G1 Z movements (+Z0.1 etc) until you have the famous one-sheet-paper-distance, then say G92 Z0 to set 0 position. But this is no general solution. There must be a reason why it is not working as expected.
                                            Maybe someone other has an idea what's wrong.

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