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

    CR-10S5 Firmware

    Scheduled Pinned Locked Moved Unsolved
    Firmware installation
    15
    145
    8.2k
    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.
    • Vetiundefined
      Veti @DocTrucker
      last edited by

      @DocTrucker said in CR-10S5 Firmware:

      Struggled to find a spec for the motors are they all creality 42-40? If so do they match the resistance of the following link?

      check this
      https://gist.github.com/knoopx/e6c40a009e796203b93a75a3ed6a5ab8

      DocTruckerundefined 1 Reply Last reply Reply Quote 0
      • DocTruckerundefined
        DocTrucker @Veti
        last edited by DocTrucker

        @Veti the JK42HS42-1704 motor linked on that page is 1.7A. Looks like there is some variation on what creality strapped to their machines?

        https://m.made-in-china.com/product/Jk42hs401704-NEMA-17-3D-Printer-Stepper-Motor-42mm-Reprap-Motor-729798295.html

        Perhaps their board doesn't work well at higher currents?

        Edit: There are 4 JK42HS40-* motors. A resistance check should confirm which it is. The 30ohm resistance is unlikely. They come in 1.7, 1.3, and 1.2A rated models.

        Note for the original poster. Don't change current without confirming which motors are strapped to your machine. If in doubt, leave as is.

        Running 3 P3Steel with Duet 2. Duet 3 on the shelf looking for a suitable machine. One first generation Duet in a Logo/Turtle style robot!

        1 Reply Last reply Reply Quote 0
        • Gost101undefined
          Gost101
          last edited by Gost101

          All of the endstops switch to NO upon being at zero, however the endstop is not stoping the axis from wanting to move after the endstop has been triggered. They Y motor moves now perfectly, seemed to be a loose wire on the connector attached to the motor.

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

            Endstops are only active when doing a homing move with G1 S1

            Z-Bot CoreXY Build | Thingiverse Profile

            1 Reply Last reply Reply Quote 0
            • Gost101undefined
              Gost101
              last edited by Gost101

              Cool beans, that is the next task. I need to fix the homing functions next, as they don't move the intended motor. I'm also still having a probelm with syncing the z axis. Going down is fine, however going up will produce a stair case affect (one motor will spin while the other doesnot then the motors switch and do the same thing)

              1 Reply Last reply Reply Quote 0
              • Gost101undefined
                Gost101
                last edited by

                All of the homing functions are fixed, I'm at a restaurant right now, but I will post the config and home files when I get back. Is there a way to make the z move fast on the way down, but slow on the way up?

                1 Reply Last reply Reply Quote 0
                • Gost101undefined
                  Gost101
                  last edited by Gost101

                  Home ALL homeall (1).g

                  ; homeall.g
                  ; called to home all axes
                  ;
                  ; generated by RepRapFirmware Configuration Tool v2.0.3 on Wed Sep 11 2019 20:24:24 GMT-0600 (Mountain Daylight Time)
                  ; Y
                  G91               ; relative positioning
                  G1 S1 Y-505 F1800 ; move quickly to Y axis endstop and stop there (first pass)
                  G1 Y5 F6000       ; go back a few mm
                  G1 S1 Y-505 F360  ; move slowly to Y axis endstop once more (second pass)
                  G90               ; absolute positioning
                  ; X
                  G91               ; relative positioning
                  G1 S1 X-505 F1800 ; move quickly to X axis endstop and stop there (first pass)
                  G1 X5 F6000       ; go back a few mm
                  G1 S1 X-505 F360  ; move slowly to X axis endstop once more (second pass)
                  G90               ; absolute positioning
                  ; Z
                  G91               ; relative positioning
                  M92 Z400.00      ; Move Z Fast
                  G1 S1 Z-505 F3000 ; move Z down until the endstop is triggered
                  G92 Z0            ; set Z position to axis minimum (you may want to adjust this)
                  G1 Z1 F6000       ; go back a few mm
                  M92 Z80		  ; Move Slow
                  G1 S1 Z-505 F400 ; move slowly to X axis endstop once more (second pass)
                  G90               ; absolute positioning
                  

                  Home X homex.g

                  ; homex.g
                  ; called to home the X axis
                  ;
                  ; generated by RepRapFirmware Configuration Tool v2.0.3 on Wed Sep 11 2019 20:24:24 GMT-0600 (Mountain Daylight Time)
                  G91               ; relative positioning
                  G1 S1 X-505 F1800 ; move quickly to X axis endstop and stop there (first pass)
                  G1 X5 F6000       ; go back a few mm
                  G1 S1 X-505 F360  ; move slowly to X axis endstop once more (second pass)
                  G90               ; absolute positioning
                  

                  Home Y homey.g

                  ; homey.g
                  ; called to home the Y axis
                  ;
                  ; generated by RepRapFirmware Configuration Tool v2.0.3 on Wed Sep 11 2019 20:24:24 GMT-0600 (Mountain Daylight Time)
                  G91               ; relative positioning
                  G1 S1 Y-505 F1800 ; move quickly to Y axis endstop and stop there (first pass)
                  G1 Y5 F6000       ; go back a few mm
                  G1 S1 Y-505 F360  ; move slowly to Y axis endstop once more (second pass)
                  G90               ; absolute positioning
                  

                  Home Z homez (1).g

                  ; homez.g
                  ; called to home the Z axis
                  ;
                  ; generated by RepRapFirmware Configuration Tool v2.0.3 on Wed Sep 11 2019 20:24:24 GMT-0600 (Mountain Daylight Time)
                  G91               ; relative positioning
                  M92 Z400.00      ; Move Z Fast
                  G1 S1 Z-505 F3000 ; move Z down until the endstop is triggered
                  G92 Z0            ; set Z position to axis minimum (you may want to adjust this)
                  G1 Z1 F6000       ; go back a few mm
                  M92 Z80		  ; Move Slow
                  G1 S1 Z-505 F400 ; move slowly to X axis endstop once more (second pass)
                  G90               ; absolute positioning
                  
                  Phaedruxundefined 1 Reply Last reply Reply Quote 0
                  • Gost101undefined
                    Gost101
                    last edited by

                    I just got my BLTouch in today, but I will have to print out the mount once this can print.

                    What I have to do next:

                    Either figure out:

                    Why my hot end thermister is not working.
                    -Possibly rewire
                    Why my hotend will not heat up.
                    -Possibly rewire
                    -Wait for the new one to arrive: Here
                    Figure out how to use a filament sensor
                    Replace Main Hotend fan for a Noctua fan: Here

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

                      @Gost101 said in CR-10S5 Firmware:

                      M92 Z400.00 ; Move Z Fast
                      M92 Z80 ; Move Slow

                      Nope, this isn't right. You're changing the steps per mm value for the axis, which isn't changing the speed it's changing how far it's moving per rotation. Not sure what the intention is there.

                      Z-Bot CoreXY Build | Thingiverse Profile

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

                        @Gost101 said in CR-10S5 Firmware:

                        I just got my BLTouch in today, but I will have to print out the mount once this can print.

                        When you switch to a z probe you can follow the guidance here for setting up the probe and the Z homing macro:

                        https://duet3d.dozuki.com/Wiki/ConfiguringRepRapFirmwareCartesianPrinter#Section_Homing_Z_using_a_Z_probe

                        https://duet3d.dozuki.com/Wiki/Connecting_a_Z_probe#Section_BLTouch

                        Z-Bot CoreXY Build | Thingiverse Profile

                        1 Reply Last reply Reply Quote 0
                        • Gost101undefined
                          Gost101
                          last edited by

                          Is there a way to make the axis move faster besides changing the steps/mm?

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

                            Change the feed rate of the move.

                            Z-Bot CoreXY Build | Thingiverse Profile

                            1 Reply Last reply Reply Quote 0
                            • Gost101undefined
                              Gost101
                              last edited by

                              Which command is that?

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

                                That's the F parameter of the G1 moves

                                Z-Bot CoreXY Build | Thingiverse Profile

                                1 Reply Last reply Reply Quote 0
                                • Gost101undefined
                                  Gost101
                                  last edited by

                                  Here is the latest config files.
                                  I need to print the BLTouch mount before I can begin using it.
                                  Everything heats up, however I'm having trouble with the e3D Volcano extruding (I just bough a Bondtech Extruder to hopeful solve this as the stock extruder is skipping. I will try to see if the hotend is clogged, I don't think it is due to being a e3D nozzle X.
                                  Everything works at the moment, so I will attempt a benchy.

                                  Config.g: config.g

                                  ;config.g
                                  ; Created by Gost101 on Saturday, September 28th, 2019 at 18:00 MST (6:00PM for Civs). 
                                  ; This firmware discussion can be found on duet fourm: https://forum.duet3d.com/topic/11964/cr-10s5-firmware/37
                                  ; Contact gost1017@gmail.com for more help.
                                  
                                  ; General preferences
                                  G90                                      ; send absolute coordinates...
                                  M83                                      ; ...but relative extruder moves
                                  M550 P"A.C.E."                           ; set printer name
                                  M669 K0                                  ; select Cartesian mode
                                  
                                  ; Network
                                  M551 P"12345"                            ; set password
                                  M552 S1                                  ; enable network
                                  M586 P0 S1                               ; enable HTTP
                                  M586 P1 S0                               ; disable FTP
                                  M586 P2 S0                               ; disable Telnet
                                  
                                  ; Drives
                                  M569 P0 S1                               ; X physical drive 0 goes forwards
                                  M569 P1 S1                               ; Y physical drive 1 goes forwards
                                  M569 P2 S0                               ; Z physical drive 2 goes backwards
                                  M569 P2 S0                               ; Z physical drive 2 goes backwards
                                  M569 P3 S1                               ; E 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 Y78.00 Z400.00 E420.00        ; set steps per mm
                                  M566 X900.00 Y900.00 Z1400.00 E120.00    ; set maximum instantaneous speed changes (mm/min)
                                  M203 X6000.00 Y6000.00 Z1400.00 E1200.00 ; set maximum speeds (mm/min)
                                  M201 X500.00 Y500.00 Z1400.00 E250.00    ; set accelerations (mm/s^2)
                                  M906 X800 Y800 Z8000 E800 I30            ; set motor currents (mA) and motor idle factor in per cent
                                  M84 S30                                  ; Set idle timeout
                                  
                                  ; Axis Limits
                                  M208 X0:500 Y0:500 Z0:500                ; set axis maxima
                                  
                                  ; Endstops
                                  M574 X1 Y1 Z1 S1                         ; set active high endstops
                                  
                                  ; Z-Probe
                                  M558 P0 H5 F120 T6000                    ; disable Z probe but set dive height, probe speed and travel speed
                                  M557 X15:215 Y15:195 S20                 ; define mesh grid
                                  
                                  ; Heaters
                                  M305 P0 T100000 B4138 R4700              ; set thermistor + ADC parameters for heater 0
                                  M143 H0 S120                             ; set temperature limit for heater 0 to 120C
                                  M305 P1 T100000 B4138 R4700              ; set thermistor + ADC parameters for heater 1
                                  M143 H1 S280                             ; set temperature limit for heater 1 to 280C
                                  
                                  ; Fans
                                  M106 P0 S0 I0 F500 H-1                   ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
                                  M106 P1 S1 I0 F500 H1 T45                ; set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
                                  
                                  ; Tools
                                  M563 P0 D0 H1 F0                         ; define tool 0
                                  G10 P0 X0 Y0 Z0                          ; set tool 0 axis offsets
                                  G10 P0 R0 S0                             ; set initial tool 0 active and standby temperatures to 0C
                                  
                                  ; Custom settings are not defined
                                  

                                  Home All: homeall.g

                                  ; homeall.g
                                  ; Created by Gost101 on Saturday, September 28th, 2019 at 18:00 (6:00PM for Civs). 
                                  ; This firmware discussion can be found on duet fourm: https://forum.duet3d.com/topic/11964/cr-10s5-firmware/37
                                  ; Contact gost1017@gmail.com for more help.
                                  ; Y-Axis
                                  G91                ; relative positioning
                                  G1 S1 Y-505 F3000  ; move quickly to Y axis endstop and stop there (first pass)
                                  G1 Y5 F1000        ; go back a few mm
                                  G1 S1 Y-505 F360   ; move slowly to Y axis endstop once more (second pass)
                                  G90                ; absolute positioning
                                  ; X-Axis
                                  G91                ; relative positioning
                                  G1 S1 X-505 F1800  ; move quickly to X axis endstop and stop there (first pass)
                                  G1 X5 F6000        ; go back a few mm
                                  G1 S1 X-505 F360   ; move slowly to X axis endstop once more (second pass)
                                  G90                ; absolute positioning
                                  ; Z-Axis
                                  G91                ; relative positioning
                                  G1 S1 Z-505 F10000 ; move Z down until the endstop is triggered
                                  G92 Z0             ; set Z position to axis minimum (you may want to adjust this)
                                  G1 Z3 F800         ; go back a few mm
                                  G1 S1 Z-505 F80    ; move slowly to X axis endstop once more (second pass)
                                  G90                ; absolute positioning
                                  

                                  Home X: homex.g

                                  ; homex.g
                                  ; Created by Gost101 on Saturday, September 28th, 2019 at 18:00 MST (6:00PM for Civs). 
                                  ; This firmware discussion can be found on duet fourm: https://forum.duet3d.com/topic/11964/cr-10s5-firmware/37
                                  ; Contact gost1017@gmail.com for more help.
                                  G91               ; relative positioning
                                  G1 S1 X-505 F1800 ; move quickly to X axis endstop and stop there (first pass)
                                  G1 X5 F6000       ; go back a few mm
                                  G1 S1 X-505 F360  ; move slowly to X axis endstop once more (second pass)
                                  G90               ; absolute positioning
                                  

                                  Home Y: homey.g

                                  ; homey.g
                                  ; Created by Gost101 on Saturday, September 28th, 2019 at 18:00 MST (6:00PM for Civs). 
                                  ; This firmware discussion can be found on duet fourm: https://forum.duet3d.com/topic/11964/cr-10s5-firmware/37
                                  ; Contact gost1017@gmail.com for more help.
                                  G91               ; relative positioning
                                  G1 S1 Y-505 F3000 ; move quickly to Y axis endstop and stop there (first pass)
                                  G1 Y5 F1000       ; go back a few mm
                                  G1 S1 Y-505 F360  ; move slowly to Y axis endstop once more (second pass)
                                  G90               ; absolute positioning
                                  

                                  Home Z: homez.g

                                  ; homez.g
                                  ; Created by Gost101 on Saturday, September 28th, 2019 at 18:00 MST (6:00PM for Civs). 
                                  ; This firmware discussion can be found on duet fourm: https://forum.duet3d.com/topic/11964/cr10s5-firmware/37
                                  ; Contact gost1017@gmail.com for more help.
                                  G91                  ; relative positioning
                                  G1 S1 Z-505 F10000   ; move Z down until the endstop is triggered
                                  G92 Z0               ; set Z position to axis minimum (you may want to adjust this)
                                  G1 Z3 F800           ; go back a few mm
                                  G1 S1 Z-505 F80      ; move slowly to X axis endstop once more (second pass)
                                  G90                  ; absolute positioning
                                  ; Uncomment the following lines to lift Z after probing
                                  ;G91                 ; relative positioning
                                  ;G1 S2 Z5 F100       ; lift Z relative to current position
                                  ;G90                 ; absolute positioning
                                  
                                  1 Reply Last reply Reply Quote 0
                                  • JamesMundefined
                                    JamesM
                                    last edited by

                                    Your thermistor settings are wrong for both your bed and hotend.....The bed should be M305 P0 T100000 B3950 R4700 and the volcano if it has the E3D cartridge thermistor should be M305 P1 T100000 B4725 C7.060000e-8 R4700

                                    1 Reply Last reply Reply Quote 1
                                    • Gost101undefined
                                      Gost101
                                      last edited by

                                      Thanks, I changed that before this print: ![alt text]IMG_20190929_174503.jpg alt text

                                      1 Reply Last reply Reply Quote 0
                                      • Gost101undefined
                                        Gost101
                                        last edited by

                                        I've got a lot of tweaking to do.

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

                                          It's not... THAT bad... I guess.

                                          Z-Bot CoreXY Build | Thingiverse Profile

                                          1 Reply Last reply Reply Quote 0
                                          • Gost101undefined
                                            Gost101
                                            last edited by

                                            The e3D volcano keeps getting clogged. In between the nozzle and the Capricorn tube there is a little gap that wont close and the filament expands into that and wont let me extrude. I purchased the bontech extruder to hopefully overpower the clog. Any thoughts on what to do?

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