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.
    • 94118undefined
      94118
      last edited by

      Note this is Not my Config .g File: FFCP Profile for Duet from Guyaros:

      config.g file:
      [c]
      ; Configuration file for Duet WiFi (Firmware 1.20)
      ; Executed by the firmware on start-up
      ; Last updated: 29.12.2017 by Guyaros

      ; General preferences
      M111 S0; Debugging off
      G21; Work in millimetres
      G90; Set absolute coordinates
      M83; Set relative extruder moves
      M555 P1; Set firmware compatibility to look like RepRapFirmare
      M575 P1 B57600 S1; Comms parameters for PanelDue

      ; Network settings
      M550 PGuyaros Creator Pro; Set printer name
      M551 PYOURPASSWORD; Set printer password
      M587 S"SAMPLEWIFISSID" I192.168.1.101 J192.168.1.1;
      M552 P"SAMPLEWIFISSID" S1; Set network SSID (P) Enable WiFi (S1)

      ; Motors drivers
      M569 P0 S0; Set (X) motor drive 0 (P0) (X) goes backward (S0)
      M569 P1 S0; Set (Y) motor drive 1 (P1) goes backward (S0)
      M569 P2 S1; Set (Z) motor drive 2 (P2) goes forward (S1)
      M569 P3 S1; Set (E0) motor drive 3 (P3) goes forward (S1)

      M350 X16 Y16 Z16 E16 I1; Set microstepping to x16 step, Interpolation enabled (I1)
      ;M92 X93.718 Y93.718 Z400 E192.55; Set axis steps/mm
      M92 X94.118 Y94.118 Z400 E192.55; Set axis steps/mm
      M906 X700 Y700 Z400 E1200 I20; Set motor currents [mA] and motor idle factor in percent (20%)
      M84 S10; Set idle timeout to 10[sec] (S10)

      ; Axis kinematics
      M201 X560 Y560 Z250 E300; Set axis accelerations [mm/s^2]
      M566 X840 Y840 Z840 E120; Set axis maximum instantaneous speed changes [mm/min]
      M203 X4800 Y4800 Z720 E1200; Set axis maximum speeds [mm/min]

      ; Axis size
      M208 X0 Y0 Z-3 S1; Set axis minima
      M208 X290 Y145 Z165 S0; Set axis maxima
      M579 X1.001895478 Y1.004419446; Scale axis (Correction factors based on measurment of printed models)

      ; Endstops
      M574 X1 S1; Set endstop configuration, X endstop at low end (X1), Active high (S1)
      M574 Y1 S0; Set endstop configuration, Y endstop at low end, Active low (S0)
      M574 Z1 S2; Set endstop configuration, Z Probe at low end

      ; Z probe and Bed compensation
      M558 P1 X0 Y0 Z1 F240 H1 T4800; Set Z probe type to IR probe (P1), and is used for homing Z axis (Z1), Feed rate 4[mm/sec] (F240), Dive height 1[mm] (H1), Travel speed between points 80[mm/sec] (T4800),
      G31 X35 Y0 Z1.78 P500; Set the probe offset on x axis (X35), set z probe trigger height (Z1.78), set probe output value at trigger height (P500) (FlashForge Blue BuildTak)
      M557 X60:255 Y8:128 S40; Set probing grid for Auto Bed Leveling using G29 command, X(min:max) Y(min:max) S(Spacing)

      ; Heaters & Thermistors
      ; Bed
      M305 P0 T94573 B4230 R4700 L0 H0; Set thermistor + ADC parameters for heater 0 (P0)
      M304 P430.7 I0.478 D452.2; Set Bed PID parameters
      M307 H0 A242.2 C901.9 D1.5 S1.0; Set heating process parametersheater, Heater0 (H0), Gain (A242.2), time Constant (C901.9), Dead time (D1.5), maximum PWM 100% (S1.0)
      M143 H0 S120; Set temperature limit for heater 0 (H0) to 120[deg] (S120)
      ; Extruder
      M305 P1 T90000 B4085; Set thermistor and ADC parameters
      M143 S255; Set maximum heater temperature to 255C
      M307 H1 A306.6 C146 D6 S1.0; Set heating process parameters, Heater1 (H1),Gain (A), time constant (C), Dead time (D6), Max PWM 100% (S1.0)

      ; Fans
      M106 P0 S0 I0 F250 H-1; Set fan 0 value, PWM signal inversion and frequency, Thermostatic control is turned off (Duet board fan)
      M106 P1 S0 I0 F250 H1 T45 L1; Set fan 1 value, PWM signal inversion and frequency, Thermostatic control is turned on (Extruder0 Fan)
      M106 P2 S0 I0 F250 H-1; Set fan 2 value, PWM signal inversion and frequency, Thermostatic control is turned off (Blower fan)

      ; Tools
      M563 P0 D0 H1 F2; Define tool 0 (P0), uses Extruder 0(E0) (D0), uses Heater 1 (Actually Heater E0), uses Fan 2 (F2)
      G10 P0 X0 Y0; Set tool 0 axis offsets
      G10 P0 R0 S0; Set initial tool 0 active and standby temperatures to 0C
      T0; Select first tool
      [/c]

      I have noted some of the settings he has listed for his FFCP Below is my Files:

      ; homex.g
      ; called to home the X axis

      M913 X30; Set X motor current to 30% of its normal current to avoid ramming in case of crash
      G91; Switch to relative positioning
      G1 Z5 F300; Lower bed by 5[mm] in travel speed 5[mm/sec] to avoid crashing

      ; First pass (Corse movement)
      G91; Switch to relative positioning
      G1 X-295 F1200 S1; Move X axis to towards the endstop at travel speed of 25[mm/sec] (F1500) stop when endstop triggers (S1)
      G92 X0; Set X to home positions

      ; Go back a few mm
      G1 X5 F600; Move X axis by 5[mm]

      ; Second pass (Fine movement)
      G1 X-10 F300 S1; Move X axis to towards the endstop at travel speed of 6[mm/sec] (F360) stop when endstop triggers (S1)
      G90; Switch to absolute positioning

      M913 X100; Reset X motor current to normal current

      ; homey.g
      ; called to home the Y axis

      M913 Y40; Set Y motor current to 40% of its normal current, to avoid ramming in case of crash
      ; First pass (Coarse movement)
      G91; Switch to relative positioning
      G1 Y165 F1200 h1; Move Y-axis to towards the endstop, at travel speed of 20[mm/sec] (F1200), stop when endstop triggers (h1)
      G1 Y5 F600; Move back Y-axis by 5[mm]

      ; Second pass (Fine movement)
      G1 Y135 F300 h1; Move Y-axis to towards the endstop, at travel speed of 6[mm/sec] (F360), stop when endstop triggers (h1)
      G90; Switch to absolute positioning
      M913 Y100; Reset Y motor current to normal current 100%

      ; homez.g
      ; called to home the Z axis

      ; Prepare for Z-axis homing
      M913 Z80; Set Z motor current to 80% of its normal current, to avoid ramming in case of crash
      G91; Switch to relative positioning
      G1 H2 S2 Z5 F300; Move bed 5[mm] down, at travel speed 5[mm/sec], to avoid nozzle crash in case the bed is above the nozzle
      G90; Switch to Absolute positioning
      G1 X120 Y70 F3000; Move carriage to bed center, at travel speed 50[mm/sec]
      ; Home Z-axis
      G91; Switch to relative positioning
      G1 Z-175 F240 S1; Raise bed all the way up, at travel speed 5[mm/sec], stop when hit the endstop (S1)
      G92 Z6; Set Z position
      G90; Switch to absolute positioning
      M913 Z100; Set Z motor current back to 100%

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

        To encapsulate your gcode snippets in code blocks use the </> button in the reply dialogue. I think that's where your [/c] came from.

        Z-Bot CoreXY Build | Thingiverse Profile

        1 Reply Last reply Reply Quote 0
        • A Former User?
          A Former User
          last edited by

          (or if you want to type use ``` as pr the markdown standard as bbcode isn't supported)

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

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

            M575 P1 B57600 S1; Comms parameters for PanelDue

            If you remove this line entirely it will use the defaults which should work with the paneldue. What baud rate do you have selected on the paneldue settings screen?

            M587 S"SAMPLEWIFISSID" I192.168.1.101 J192.168.1.1;
            M552 P"SAMPLEWIFISSID" S1; Set network SSID (P) Enable WiFi (S1)

            You should remove that from the config.g. Send it one to enter the SSID and password and that's all you need to do. The config.g should only have M552 S1 to enable the wifi module at bootup. That's it.

            M579 X1.001895478 Y1.004419446; Scale axis (Correction factors based on measurment of printed models)

            if this is a config.g from someone else you probably don't want to use their scale factor.

            ; Z probe and Bed compensation
            M558 P1 X0 Y0 Z1 F240 H1 T4800; Set Z probe type to IR probe (P1), and is used for homing Z axis (Z1), Feed rate 4[mm/sec] (F240), Dive height 1[mm] (H1), Travel speed between points 80[mm/sec] (T4800),
            G31 X35 Y0 Z1.78 P500; Set the probe offset on x axis (X35), set z probe trigger height (Z1.78), set probe output value at trigger height (P500) (FlashForge Blue BuildTak)
            M557 X60:255 Y8:128 S40; Set probing grid for Auto Bed Leveling using G29 command, X(min:max) Y(min:max) S(Spacing)

            The config is setup to use a Z probe, but your homez is setup to use an endstop switch. Do you have a probe?

            ; homex.g
            ; called to home the X axis
            
            M913 X30; Set X motor current to 30% of its normal current to avoid ramming in case of crash
            G91; Switch to relative positioning
            G1 Z5 F300; Lower bed by 5[mm] in travel speed 5[mm/sec] to avoid crashing
            

            That G1 Z5 F300 should be G1 Z5 F300 H2. That will get rid of the insufficient axis error for homex.

            I strongly suggest that you use the web configurator tool to create a new config file set. Use the details you know about the printer to fill out the form.
            https://configtool.reprapfirmware.org/Start

            Then you can make changes to that if needed. Compare it to the other config.g and try to understand what's different between them.

            Z-Bot CoreXY Build | Thingiverse Profile

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

              As i have stated the config.g file is not mine!!!

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

                Then why bother posting it?

                Z-Bot CoreXY Build | Thingiverse Profile

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

                  Have tried changes here is the result of test:

                  console (1).txt

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

                    Have also tried the previous version RRF that caused my thermistors to not read stating N/A

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

                      It looks like you're using the test macros that came on the SD card. Do not use those. They are meant for factory testing only.

                      Z-Bot CoreXY Build | Thingiverse Profile

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

                        Homing controls result Minimal movement had to maunally home axis numbers are X 216, Y 103, Z 145 these number i had to manually move so that my head is in back right corner.

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

                          dwc2settings.json

                          I think i might have found the problem with paneldue below is the DWC Line code for Baud Settings i think 115200 should not be their. Opinon

                          "M575 P1 B115200 S1","M575 P1 B57600 S1","M575","M575 P0 B57600 S1"

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

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

                            DWC Line code for

                            What does that mean? Can you post a screen shot? Use the windows "snip" tool.

                            Delta / Kossel printer fanatic

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

                              Annotation 2020-02-20 160458.png

                              Line 4

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

                                That is your command history from the "console" tab in DWC. Things you have typed in the past.

                                Ignore it.

                                Delta / Kossel printer fanatic

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

                                  Panel still states connecting, will be changing the hotend heater and thermistor to a US made 24v 40W Heater and an NTC Thermistor to replace the K Thermalcouple

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

                                    Attn: Moderators

                                    2 options

                                    1. Either tell me how to fix my Paneldue

                                    2. Request RMA for paneldue so that i may get it excahnged with PrintedSolid.

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

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

                                      Attn: Moderators

                                      2 options

                                      1. Either tell me how to fix my Paneldue

                                      2. Request RMA for paneldue so that i may get it excahnged with PrintedSolid.

                                      Please restate the problem with the PanelDue.
                                      What paneldue firmware version are you using?
                                      How do you have it wired?
                                      If you are using the ribbon cable, have you tried the 4 wire cable, and vice versa.
                                      Have you tested continuity on the wires?
                                      What baud rate is set in the PanelDue settings menu?
                                      What baud rate are you using in your config?

                                      Z-Bot CoreXY Build | Thingiverse Profile

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

                                        Not Connecting, Panel firmware ver1.23, both 4 pin wire and ribbon cable , Baud rate set 56700 for both.

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

                                          Have you updated the firmware yourself, or is it still as is out of the box?

                                          Did it connect initially?

                                          I would try re-flashing the firmware
                                          https://duet3d.dozuki.com/Wiki/PanelDue_Firmware_update

                                          Z-Bot CoreXY Build | Thingiverse Profile

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

                                            yes it did connect initially, and yes i did reflash the firmware myself with Bossa i have tried reflashing the firmware may times and have not gotten anywhere

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