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

    Another Predator

    Scheduled Pinned Locked Moved
    Duet Hardware and wiring
    11
    204
    14.3k
    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.
    • Danalundefined
      Danal
      last edited by Danal

      @Carlo said in Another Predator:

      ; homedelta.g
      ; called to home all towers on a delta printer
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.8 on Sun Mar 15 2020 19:14:10 GMT+0000 (Greenwich Mean Time)
      G91 ; relative positioning
      ;*** Slow homing has been configured. Change F180 to F1800 below when your configuration is working
      G1 H1 X450 Y450 Z450 F1800 ; move all towers to the high end stopping at the endstops (first pass)
      ;G1 H2 X-5 Y-5 Z-5 F1800 ; go down a few mm
      ;*** Slow homing has been configured. Change F180 to F360 below when your configuration is working
      ;G1 H1 X10 Y10 Z10 F180 ; move all towers up once more (second pass)
      ;G1 Z-5 F6000 ; move down a few mm so that the nozzle can be centred
      G90 ; absolute positioning
      ;G1 X0 Y0 F6000 ; move X+Y to the centre

      I see one problem immediately. A bunch of commands in homedelta.g have been commented out. There are two problems with that:

      First, the "second pass" slow home is commented out. This means that tower height, and therefore indirectly bed height, is dependent only one a single bang into the upper switches that occurs at F1800. This is not very repeatable or accurate.

      Second, after that single bang, there is not a slight downward move (it is commented out). This means the carriages and effector are "trapped" up against all three switches and cannot adjust for tower offsets or angles. This will produce all kinds of bizarre behaviors. The macro just ends with the carriage sitting there up against the stops. Depending on what the next move is, various weird things are going to happen.

      Your homedelta.g should be:

      ; homedelta.g
      ; called to home all towers on a delta printer
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.8 on Sun Mar 15 2020 19:14:10 GMT+0000 (Greenwich Mean Time)
      G91                       ; relative positioning
       ;*** Slow homing has been configured. Change F180 to F1800 below when your configuration is working
      G1 H1 X450 Y450 Z450 F1800 ; move all towers to the high end stopping at the endstops (first pass)
      G1 H2 X-5 Y-5 Z-5 F1800   ; go down a few mm
      ;*** Slow homing has been configured. Change F180 to F360 below when your configuration is working
      G1 H1 X10 Y10 Z10 F180    ; move all towers up once more (second pass)
      G1 Z-5 F6000              ; move down a few mm so that the nozzle can be centred
      G90                       ; absolute positioning
      G1 X0 Y0 F6000            ; move X+Y to the centre
      

      Or very similar...

      I will keep looking.

      Delta / Kossel printer fanatic

      Carloundefined 1 Reply Last reply Reply Quote 1
      • Danalundefined
        Danal
        last edited by

        I notice there is an "m501" near the end of config.g. This loads /sys/config_override.g. Please either post that file, and/or consider taking the M501 out until we get this all straight.

        Delta / Kossel printer fanatic

        Carloundefined 1 Reply Last reply Reply Quote 0
        • Danalundefined
          Danal
          last edited by

          @Carlo said in Another Predator:

          M665 L440.470:440.470:440.470 R232.245 H422.803 B185.0 X-0.054 Y-0.244 Z0.000

          That looks really odd to me. Can you post a couple of pictures of the printer? Preferably with the effector as close to X0Y0Z1 as you can get without damaging anything, and then one or two different photo angles at X0Y185Z1.

          Thanks!

          Delta / Kossel printer fanatic

          Carloundefined 1 Reply Last reply Reply Quote 0
          • Carloundefined
            Carlo @Danal
            last edited by Carlo

            @Danal
            Hi Danal,

            Yes I did fit Haydn mag arms length 440.47 mm

            Thanks

            1 Reply Last reply Reply Quote 0
            • Carloundefined
              Carlo @Danal
              last edited by

              @Danal

              Hi Danal,

              These are commented out in the home file for Delta Calibration as per the documentation they are not always commented just at the point of posting.

              Thanks

              Danalundefined 1 Reply Last reply Reply Quote 0
              • Carloundefined
                Carlo @Danal
                last edited by

                @Danal said in Another Predator:

                X0Y0Z1

                Hi Danal,

                Pictures as requested,

                X0Y0Z1
                IMG_1333.jpg IMG_1328.jpg IMG_1327.jpg

                X0Y185Z1

                IMG_1351.jpg IMG_1350.jpg IMG_1349.jpg ![IMG_1348.jpg](/assets/uploads/files/1584435825406-img_1348.jpg

                Cheers

                Phaedruxundefined 1 Reply Last reply Reply Quote 0
                • Carloundefined
                  Carlo @Danal
                  last edited by Carlo

                  @Danal

                  I did an M500 this is the result from config_override.g and now removed M501 from the config.g file

                  ; config-override.g file generated in response to M500 at 2020-03-17 08:37
                  ; This is a system-generated file - do not edit
                  ; Delta parameters
                  M665 L440.470:440.470:440.470 R221.526 H414.033 B185.0 X0.120 Y0.069 Z0.000
                  M666 X0.008 Y-1.014 Z1.006 A0.00 B0.00
                  ; Heater model parameters
                  M307 H0 A90.0 C700.0 D10.0 S1.00 V0.0 B0
                  M307 H1 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                  M307 H2 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                  M307 H3 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                  M307 H4 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                  M307 H5 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                  M307 H6 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                  M307 H7 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                  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

                  Cheers

                  1 Reply Last reply Reply Quote 0
                  • Danalundefined
                    Danal
                    last edited by

                    Thanks, excellent stuff, I will take a look at all of that.

                    Delta / Kossel printer fanatic

                    1 Reply Last reply Reply Quote 0
                    • Danalundefined
                      Danal @Carlo
                      last edited by

                      @Carlo said in Another Predator:

                      These are commented out in the home file for Delta Calibration as per the documentation they are not always commented just at the point of posting.

                      Just to triple confirm: The running file on the printer is going to end with the carriages (approximately) 5mm below the endstop switches, correct?

                      Delta / Kossel printer fanatic

                      Carloundefined 1 Reply Last reply Reply Quote 0
                      • Carloundefined
                        Carlo @Danal
                        last edited by

                        @Danal

                        Hi Danal,

                        That's what it's supposed to do but I cant confirm as it homes to the below error so it doesn't bounce.
                        It used to do as intended but I rolled the firmware back redid the configs via the online tool since these errors.
                        Note* the height Z-50 is myself trying to move the effector after homing.

                        homeerror.png

                        Not sure this helps.

                        Thanks I know its a lot to scan through it is appreciated.

                        Danalundefined boldnutsundefined 2 Replies Last reply Reply Quote 0
                        • Danalundefined
                          Danal @Carlo
                          last edited by

                          @Carlo said in Another Predator:

                          Thanks I know its a lot to scan through it is appreciated.

                          We will get it going. I appreciate your patience in re-posting stuff for the "new guy" looking into this.

                          Delta / Kossel printer fanatic

                          1 Reply Last reply Reply Quote 1
                          • boldnutsundefined
                            boldnuts @Carlo
                            last edited by boldnuts

                            @Carlo Your active high endstops are incorrect, should be M574 X2 Y2 Z2 S1 ; Set active high endstops.
                            It also looks like you have both RR3 and RR2 configs in your config.g ? file

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

                              @boldnuts said in Another Predator:

                              @Carlo Your active high endstops are incorrect, should be M574 X2 Y2 Z2 S1 ; Set active high endstops.
                              It also looks like you have both RR3 and RR2 configs in your config.g ? file

                              Good catch! Though you mean 'high end' endstops, as in their position on the printer; the S parameter is for active high/low (describes how the microswitch works).

                              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

                              Carloundefined 1 Reply Last reply Reply Quote 0
                              • boldnutsundefined
                                boldnuts
                                last edited by boldnuts

                                yes correct, which version of the firmware is being used? as it's confusing

                                Carloundefined 1 Reply Last reply Reply Quote 0
                                • Carloundefined
                                  Carlo @droftarts
                                  last edited by

                                  @droftarts said in Another Predator:

                                  M574 X2 Y2 Z2 S1

                                  Great stuff homing now works and endstops offsets now look... correct also
                                  Quick calibrate returns:
                                  M665
                                  Diagonals 440.470:440.470:440.470, delta radius 221.612, homed height 414.196, bed radius 185.0, X 0.073°, Y 0.055°, Z 0.000°
                                  M666
                                  Endstop adjustments X-0.03 Y-0.29 Z0.32, tilt X0.00% Y0.00%

                                  Thank you!

                                  1 Reply Last reply Reply Quote 0
                                  • Carloundefined
                                    Carlo @boldnuts
                                    last edited by

                                    @boldnuts

                                    Hi Ian,

                                    M115
                                    FIRMWARE_NAME: RepRapFirmware for Duet 2 WiFi/Ethernet FIRMWARE_VERSION: 2.05 ELECTRONICS: Duet Ethernet 1.02 or later FIRMWARE_DATE: 2019-12-13b1

                                    If that still needed.

                                    Thanks

                                    boldnutsundefined 1 Reply Last reply Reply Quote 0
                                    • boldnutsundefined
                                      boldnuts @Carlo
                                      last edited by

                                      @Carlo can we see your start gcode from your slicer?, you using G32 (calibrate) before printing?, maybe G29 S1 to load the bed mesh?

                                      Carloundefined 1 Reply Last reply Reply Quote 1
                                      • Carloundefined
                                        Carlo @boldnuts
                                        last edited by Carlo

                                        @boldnuts
                                        I have no start code yet having failed to get a layer down yet didn't want to add any complications,
                                        However I have been doing G92 Z0 with paper G32 before attempting aprint ..I never home after probe and always with heated bed and nozzle, bed @ 70c nozzle @ 220c.
                                        I have done the mesh but don't use it .. more to know it's flat..ish I think?? height maps are above in previous post.

                                        If that help ?

                                        Thanks

                                        1 Reply Last reply Reply Quote 0
                                        • boldnutsundefined
                                          boldnuts
                                          last edited by

                                          You need to run G32 in your start gcode before every print and it might be a good idea to run G29 to load the bed mesh as well, then recall it with G29 S1

                                          Danalundefined Carloundefined 2 Replies Last reply Reply Quote 0
                                          • Danalundefined
                                            Danal @boldnuts
                                            last edited by

                                            @boldnuts said in Another Predator:

                                            You need to run G32 in your start gcode before every print

                                            YES!

                                            This is one of the big keys to running a delta. Let it find the bed, every time.

                                            Delta / Kossel printer fanatic

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