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

Help: Temp Sensors and Homing Issues

Scheduled Pinned Locked Moved
Tuning and tweaking
6
132
6.8k
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.
  • undefined
    Phaedrux Moderator @94118
    last edited by Phaedrux 29 Feb 2020, 22:44

    @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
    • undefined
      94118
      last edited by 29 Feb 2020, 22:53

      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
      • undefined
        Phaedrux Moderator
        last edited by 29 Feb 2020, 22:55

        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
        • undefined
          94118
          last edited by 29 Feb 2020, 23:01

          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
          • undefined
            Phaedrux Moderator
            last edited by 29 Feb 2020, 23:03

            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
            • undefined
              94118
              last edited by 29 Feb 2020, 23:21

              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
              • undefined
                Phaedrux Moderator
                last edited by 29 Feb 2020, 23:52

                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
                • undefined
                  94118
                  last edited by 1 Mar 2020, 00:25

                  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
                  • undefined
                    Phaedrux Moderator
                    last edited by 1 Mar 2020, 00:28

                    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
                    • undefined
                      94118
                      last edited by 1 Mar 2020, 00:56

                      ; 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

                      undefined 1 Reply Last reply 1 Mar 2020, 01:07 Reply Quote 0
                      • undefined
                        Phaedrux Moderator
                        last edited by 1 Mar 2020, 01:00

                        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
                        • undefined
                          94118
                          last edited by 1 Mar 2020, 01:04

                          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
                          • undefined
                            Phaedrux Moderator @94118
                            last edited by 1 Mar 2020, 01:07

                            @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
                            • undefined
                              94118
                              last edited by 1 Mar 2020, 01:18

                              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

                              undefined 1 Reply Last reply 1 Mar 2020, 02:01 Reply Quote 0
                              • undefined
                                Phaedrux Moderator @94118
                                last edited by 1 Mar 2020, 02:01

                                @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
                                • undefined
                                  94118
                                  last edited by 1 Mar 2020, 03:12

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

                                  1 Reply Last reply Reply Quote 0
                                  • undefined
                                    94118
                                    last edited by 1 Mar 2020, 03:16

                                    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
                                    • undefined
                                      Phaedrux Moderator
                                      last edited by 1 Mar 2020, 04:40

                                      So the printer will home properly but then you can't use the jog buttons in DWC?

                                      Z-Bot CoreXY Build | Thingiverse Profile

                                      1 Reply Last reply Reply Quote 0
                                      • undefined
                                        94118
                                        last edited by 1 Mar 2020, 17:36

                                        Yes that is correct

                                        1 Reply Last reply Reply Quote 0
                                        • undefined
                                          Phaedrux Moderator
                                          last edited by 1 Mar 2020, 17:42

                                          Can you send movement commands in the console?
                                          Do the paneldue move buttons work?

                                          Z-Bot CoreXY Build | Thingiverse Profile

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