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

    beginer cr10 questions

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    2
    3
    183
    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.
    • EdI_VeDeRundefined
      EdI_VeDeR
      last edited by

      I got a CR-10, I try to make my config files and still not be able to correct somes things...

      My cr-10 have only this modifications:

      the X axes inverted
      BMG Extruder
      3 wires limits switchs (VCC,Ground,Signal)
      Duet WiFi board

      First problem (I don't make to much search on this one)

      My X homing movement is inverted and it just move alittle and stop with homing done. It does't not hit any limit switch

      2nd
      My manual homing in z is perfect even with home all. When I start my program I can't change Z speed for homing and retract inprint Z movement.

      Here's is my config.g code

      Thank you

      ; Configuration file for Duet WiFi (firmware version 1.21)
      ; executed by the firmware on start-up
      
      ; General preferences
      G90                                     ; Send absolute coordinates...
      M83                                     ; ...but relative extruder moves
      
      ; Network
      M550 CR-10	                       ; Set machine name
      M552 S1                                 ; Enable network
      M586 P0 S1                              ; Enable HTTP
      M586 P1 S0                              ; Disable FTP
      M586 P2 S0                              ; Disable Telnet
      
      ; Drives
      M569 P0 S1                              ; Drive 0 (X) goes forwards
      M569 P1 S0                              ; Drive 1 (Y) goes forwards
      M569 P2 S1                              ; Drive 2 (Z1) goes backwards
      M569 P3 S1                              ; Drive 3 (E) goes forwards
      M584 X0 Y1 Z2 E3			; Driver 0=X, 1=Y, 2=Z, 3=E
      M350 X16 Y16 Z16 E16 I1                 ; Configure micro-stepping with interpolation
      M92 X80 Y80 Z400 E460                   ; Set steps per mm
      M566 X1200 Y1200 Z1800 E300              ; Set maximum instantaneous speed changes (mm/min)
      M203 X6000 Y6000 Z1800 E1500           ; Set maximum speeds (mm/min)
      M201 X500 Y500 Z500 E500              ; Set accelerations (mm/s^2)
      M906 X525 Y600 Z675 E600 I30            ; Set motor currents (mA) and motor idle factor in per cent
      M84 S30                                 ; Set idle timeout
      
      ; Axis Limits
      M208 X0 Y0 Z0 S1                        ; Set axis minima
      M208 X300 Y300 Z400 S0                  ; Set axis maxima
      
      ; Endstops
      M574 X1 Y1 Z1 S1                           ; Set active high endstops
      
      ; Z-Probe
      M210 X1500 Y1500 Z1800			;Set the feedrates used for homing to the values specified in mm per minute.
      
      ; Heaters
      M307 H0 B0 S1.00                        ; Disable bang-bang mode for the bed heater and set PWM limit
      M305 P0 T100000 B3950 C0 R4700          ; Set thermistor + ADC parameters for heater 0
      M143 H0 S120                            ; Set temperature limit for heater 0 to 120C
      M305 P1 T100000 B4725 C7.060000e-8 R4700      ; Set thermistor + ADC parameters for heater 1
      M307 H1 A493.9 C176.8 D4.6 S1.00 V23.9 B0     ; E3D V6 Hotend Calibration
      M143 H1 S280                            ; Set temperature limit for heater 1 to 280C
      
      ; Fans
      M106 P0 S0 I0 H-1                       ; Part Cooling Fan. Manual control.
      M106 P1 T45 H1                          ; Hotend Heatsink Fan. Thermostatic control, max RPM at 45C.
      M106 P2 T25:65 H100:101:102		; Duet Electronics Fan. Thermostatic control, turn on at 25C, max RPM at 65C.
      
      ; Tools
      M563 P0 D0 H1                           ; 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
      
      ; Miscellaneous
      T0                                      ; Select first tool
      
      1 Reply Last reply Reply Quote 0
      • Vetiundefined
        Veti
        last edited by

        @EdI_VeDeR said in beginer cr10 questions:

        My X homing movement is inverted and it just move alittle and stop with homing done. It does't not hit any limit switch

        change
        M569 P0 S1 ; Drive 0 (X) goes forwards
        to
        M569 P0 S0 ; Drive 0 (X) goes forwards

        and
        M574 X1 Y1 Z1 S1 ; Set active high endstops
        to
        M574 Y1 Z1 S1 ; Set active high endstops
        M574 X1 S0 ; Set active high endstops

        1 Reply Last reply Reply Quote 1
        • EdI_VeDeRundefined
          EdI_VeDeR
          last edited by

          Thank you for fast anwser.

          For my slow homing I found the problem in my cura "start gcode"

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