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

    Help: Temp Sensors and Homing Issues

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    6
    132
    6.7k
    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 Phaedrux

      If the endstop state says that it' triggered when it's not, then it's likely been defined incorrectly for the switch type.

      I don't know what type of switches you have, or how the endstops have been defined in config.g.

      https://duet3d.dozuki.com/Wiki/Gcode#Section_M574_Set_endstop_configuration

      It's likely a case of needing to change an S0 to S1 or vice versa.

      Z-Bot CoreXY Build | Thingiverse Profile

      1 Reply Last reply Reply Quote 0
      • 94118undefined
        94118
        last edited by

        Mechanical ENdstops

        Phaedruxundefined 1 Reply Last reply Reply Quote 0
        • 94118undefined
          94118
          last edited by

          Homing still an issue Please review my config.g File i will Send config.g

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

            @94118 said in Help: Temp Sensors and Homing Issues:

            Mechanical ENdstops

            Yes, but what kind of switch is it? Normally open, or normally closed? Do you have a picture of the switch?

            ; Endstops
            M574 X1 S1 P"xstop"                            ; configure active-low endstop for low end on X via pin xstop
            M574 Y2 S1 P"ystop"                            ; configure active-low endstop for high end on Y via pin ystop
            M574 Z1 S1 P"zstop"                            ; configure active-low endstop for low end on Z via pin zstop
            

            As I mentioned above, you may need to change the S1 to S0.

            With RRF3 you need to use a ! to invert the signal, so try

            ; Endstops
            M574 X1 S1 P"!xstop"                            ; configure active-low endstop for low end on X via pin xstop
            M574 Y2 S1 P"!ystop"                            ; configure active-low endstop for high end on Y via pin ystop
            M574 Z1 S1 P"!zstop"                            ; configure active-low endstop for low end on Z via pin zstop
            

            Z-Bot CoreXY Build | Thingiverse Profile

            1 Reply Last reply Reply Quote 0
            • 94118undefined
              94118
              last edited by

              Just replaced Hotend heater and Thermistor did Heater auto tune and it was successful with New 24v 40W Heater Cart. and an NTC 3950 Stud Thermistor

              ![alt text](25bd99b3-f082-4f96-bf4f-d83736da1234-image.png image url)

              Features:
              Using 22AWG cable, the copper inside is very thick, it is resistant to current 2A, voltage 300V.
              The nonconductor has a wide range of temperatures, up to 80 centigrade.
              It is not easy to be snapped and convenient to be plugged in and unplugged.
              For convenience, the plug on the other side is integrated , you can use the plug directly.

              Connection description:

              1. Bed wire connect VCC (+ of ramps)
              2. Black wire connect GND (- of ramps)
              3. Green wire connect SIGNAL (s of ramps)

              One set includes:

              1. 1x endstop switch
              2. 1x 3-pin 27.5inch cable

              What is in the package:
              2 set endstop switches for RAMPS 1.4

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

                Yes those switches would likely need to be inverted. See my post above.

                What firmware version are you running exactly? Send M115 and post the response.

                Z-Bot CoreXY Build | Thingiverse Profile

                1 Reply Last reply Reply Quote 0
                • 94118undefined
                  94118
                  last edited by

                  console (2).txt Results posted Fixed my Z and Changed my endstops to inverted with the Exclamation Fix Thanks

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

                    M500: Warning: No M501 command was executed in config.g

                    Don't forget to add M501 to the end of config.g or your tuned values won't be loaded at boot.

                    Z-Bot CoreXY Build | Thingiverse Profile

                    1 Reply Last reply Reply Quote 0
                    • 94118undefined
                      94118
                      last edited by

                      Ouickie: Is their a way to disable and enable motors so that i may level my bed with my Boro glass.

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

                        M84

                        https://duet3d.dozuki.com/Wiki/Gcode#Section_M84_Stop_idle_hold

                        Z-Bot CoreXY Build | Thingiverse Profile

                        1 Reply Last reply Reply Quote 0
                        • 94118undefined
                          94118
                          last edited by

                          When homing Z at the end of run Command it is hitting my nozzle causing my bed to tilt a few degrees

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

                            Post your homing files.

                            Is it using a probe, or an endstop?

                            If the nozzle is hitting the bed before the endstop is triggered you'll need to move the endstop so that it gets triggered first. If it's hitting the endstop but not stopping you should test the endstop switch to see if it's triggering at all when pressed.

                            Z-Bot CoreXY Build | Thingiverse Profile

                            1 Reply Last reply Reply Quote 0
                            • 94118undefined
                              94118
                              last edited by

                              ; homey.g
                              ; called to home the Y axis
                              ;
                              ; generated by RepRapFirmware Configuration Tool v2.1.8 on Thu Feb 20 2020 15:06:37 GMT-0800 (Pacific Standard Time)
                              G91 ; relative positioning
                              G1 H2 Z5 F6000 ; lift Z relative to current position
                              G1 H1 Y215 F1800 ; move quickly to Y axis endstop and stop there (first pass)
                              G1 H2 Y-5 F6000 ; go back a few mm
                              G1 H1 Y215 F360 ; move slowly to Y axis endstop once more (second pass)
                              G1 H2 Z-5 F6000 ; lower Z again
                              G90 ; absolute positioning; homex.g
                              ; called to home the X axis
                              ;
                              ; generated by RepRapFirmware Configuration Tool v2.1.8 on Thu Feb 20 2020 15:06:37 GMT-0800 (Pacific Standard Time)
                              G91 ; relative positioning
                              G1 H2 Z5 F6000 ; lift Z relative to current position
                              G1 H1 X235 F1800 ; move quickly to X axis endstop and stop there (first pass)
                              G1 H2 X5 F6000 ; go back a few mm
                              G1 H1 X235 F360 ; move slowly to X axis endstop once more (second pass)
                              G1 H2 Z-5 F6000 ; lower Z again
                              G90 ; absolute positioning
                              ; homez.g
                              ; called to home the Z axis
                              ;
                              ; generated by RepRapFirmware Configuration Tool v2.1.8 on Thu Feb 20 2020 15:06:37 GMT-0800 (Pacific Standard Time)
                              G91 ; relative positioning
                              G1 H2 Z5 F6000 ; lift Z relative to current position
                              G1 H1 Z205 F1800 ; move Z up 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 Z5 F100 ; lift Z relative to current position
                              ;G90 ; absolute positioning

                              Z axis goes a few mm beyond my Z Endstop which forces my endstop to slightly be tilited up

                              https://drive.google.com/open?id=1E3CcR-HoAqUtBcpq_rlf7GUoT6-3kfUs

                              https://drive.google.com/open?id=1DyAeQrRzdj33uJVOVafkc-4hT0_O2bQ1

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

                                And if you hit the endstop with your finger does the status change in the machine specific tab?

                                Z-Bot CoreXY Build | Thingiverse Profile

                                1 Reply Last reply Reply Quote 0
                                • 94118undefined
                                  94118
                                  last edited by

                                  Had to issue M84 and manually lower my bed to test trigger my z endstop status states NO when not hit then turns to YES when Hit

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

                                    @94118 said in Help: Temp Sensors and Homing Issues:

                                    G1 H2 Z5 F6000 ; lift Z relative to current position

                                    Remove this from homez. Maybe you were already too close to the endstop at the start of homing.

                                    If you lower the bed and then home does it move towards the endstop?
                                    Try and click it with your finger before the bed hits it. If the endstop doesn't stop it moving, power off the printer to prevent damage.

                                    You can also use M913 Z40 to reduce the motor current at the start of homez and then use M913 Z100 to return motor current back to normal at the end. That should also help limit the potential for damage.

                                    Z-Bot CoreXY Build | Thingiverse Profile

                                    1 Reply Last reply Reply Quote 0
                                    • 94118undefined
                                      94118
                                      last edited by

                                      That worked: Nice soft Stop at my endstop and adjusted my height down to 200mm was set at 205mm would it be better to just remove the Z movement from X and Y also

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

                                        @94118 said in Help: Temp Sensors and Homing Issues:

                                        would it be better to just remove the Z movement from X and Y also

                                        You could since you aren't using a probe or anything that would need to be raised above the bed before movement.

                                        Z-Bot CoreXY Build | Thingiverse Profile

                                        1 Reply Last reply Reply Quote 0
                                        • 94118undefined
                                          94118
                                          last edited by

                                          Would i be all good to load filament and try a test print

                                          1 Reply Last reply Reply Quote 0
                                          • 94118undefined
                                            94118
                                            last edited by

                                            Machine movement controls not responsive i click on the fine movement tabs and it does noting machine is in idle

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