Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. dden
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 12
    • Best 1
    • Controversial 0
    • Groups 0

    Posts made by dden

    • RE: Motors very loud

      So maybe it is better I buy a few new stepper motors? Which ones do you recommend? Oh and I tried lots of different currents and I know I need to use 100 ma increments, I think I started at 500 and went up to 1000

      posted in Duet Hardware and wiring
      ddenundefined
      dden
    • RE: Motors very loud

      Well that sucks. I bought the duet board because it was advertised to have silent steppers. Since I only have wifi in my room, I thought it a good idea to buy the wifi board. I think I will put in a creality silent board, which is a pity because I really liked the reprap software, way easier to configure than Marlin.

      posted in Duet Hardware and wiring
      ddenundefined
      dden
    • RE: Motors very loud
      ; General preferences
      G90                                                ; send absolute coordinates...
      M83                                                ; ...but relative extruder moves
      M550 P"Dennis3D"                                   ; set printer name
      
      ; Network
      ; M551 P"Ender3ProDennis"                          ; set password
      M552 S1                                            ; enable network and acquire dynamic address via DHCP
      M586 P0 S1                                         ; enable HTTP
      M586 P1 S0                                         ; disable FTP
      M586 P2 S0                                         ; disable Telnet
      
      ; Drives
      M569 P0 S0                                         ; physical drive 0 goes backwards
      M569 P1 S0                                         ; physical drive 1 goes backwards
      M569 P2 S1                                         ; physical drive 2 goes forwards
      M569 P3 S0                                         ; physical drive 3 goes backwards
      M584 X0 Y1 Z2 E3                                   ; set drive mapping
      M350 X16 Y16 Z16 E16 I1                            ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z400.00 E138.50                   ; set steps per mm
      M566 X1200.00 Y1200.00 Z24.00 E300.00              ; set maximum instantaneous speed changes (mm/min)
      M203 X9000.00 Y9000.00 Z180.00 E6000.00            ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z100.00 E5000.00              ; set accelerations (mm/s^2)
      M906 X800 Y800 Z800 E1000 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 X235 Y235 Z260 S0                             ; set axis maxima
      
      ; Endstops
      M574 X1 Y1 S1                                      ; set active high endstops
      M574 Z1 S2
      
      ; Z-Probe
      M558 P9 H5 F120 T6000                              ; disable Z probe but set dive height, probe speed and travel speed
      M557 X5:235 Y20:220 S40                            ; define mesh grid
      G31 P25 X31 Y18 Z2.25		         	   ; set BLTouch offsets	
      
      ; Heaters
      M305 P0 T100000 B4092 R4700             	   ; set thermistor + ADC parameters for heater 0
      M143 H0 S150                           		   ; set temperature limit for heater 0 to 150C
      M305 P1 T100000 B4092 R4700             	   ; set thermistor + ADC parameters for heater 1
      M143 H1 S275                            	   ; set temperature limit for heater 1 to 275C
      
      ; Disable heater to free up PWM channel
      M307 H7 A-1 C-1 D-1				   ; Disable heater 7 for BLTouch
      
      ; 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
      ;M106 P2 S1 I0 F500 H1 T45                        ; set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on
      M106 P2 T35 H100:101:102
      
      ; Tools
      M563 P0 S"HotEnd" 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
      M912 P0 S-6,5					   ; CPU temparature calibration
      
      ; Miscellaneous
      M501                                               ; load saved parameters from non-volatile memory
      M911 S21 R23 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss
      T0                                                 ; select first tool
      
      
      posted in Duet Hardware and wiring
      ddenundefined
      dden
    • Motors very loud

      I know there are already a lot of people who addressed this but after reading the forum for a day I still can't get the motors silent. There are very loud when moving but also in idle mode. I have the duetwifi on a ender3 pro. Two weeks ago I also got the ender 3 v2 and those motors are hardly noticable. I don't know what I am doing wrong so maybe someone could give me some suggestions. I tried altering the current to the motors, I tried https://duet3d.dozuki.com/Wiki/Reducing_Stand-Still_Noise but with no effect.

      posted in Duet Hardware and wiring
      ddenundefined
      dden
    • RE: Idle temperature hot-end and bed to high

      @droftarts Thanks good to know.

      posted in Tuning and tweaking
      ddenundefined
      dden
    • RE: Idle temperature hot-end and bed to high

      @Veti I corrected the settings and now everything works like a charm. Thank you very much for your help. Much appreciated!!

      posted in Tuning and tweaking
      ddenundefined
      dden
    • RE: Idle temperature hot-end and bed to high

      @Veti Thanks I will correct these settings.

      posted in Tuning and tweaking
      ddenundefined
      dden
    • RE: Idle temperature hot-end and bed to high

      @Veti Below is my config

      ; Configuration file for Duet Maestro (firmware version 2.03)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v3.1.4 on Fri Aug 28 2020 14:54:26 GMT+0200 (Central European Summer Time)

      ; General preferences
      G90 ; send absolute coordinates...
      M83 ; ...but relative extruder moves
      M550 P"Ender 3 Pro" ; set printer name

      ; Network
      M552 S1 ; enable network and acquire dynamic address via DHCP
      M586 P0 S1 ; enable HTTP
      M586 P1 S0 ; disable FTP
      M586 P2 S0 ; disable Telnet

      ; Drives
      M569 P0 S0 ; physical drive 0 goes backwards
      M569 P1 S0 ; physical drive 1 goes backwards
      M569 P2 S1 ; physical drive 2 goes forwards
      M569 P3 S0 ; physical drive 3 goes backwards
      M584 X0 Y1 Z2 E3 ; set drive mapping
      M350 X16 Y16 Z16 E128 I1 ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z400.00 E790.00 ; set steps per mm
      M566 X1200.00 Y1200.00 Z24.00 E300.00 ; set maximum instantaneous speed changes (mm/min)
      M203 X9000.00 Y9000.00 Z180.00 E6000.00 ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z100.00 E5000.00 ; set accelerations (mm/s^2)
      M906 X800 Y800 Z800 E1000 I50 ; 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 X235 Y235 Z260 S0 ; 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 X10:220 Y10:220 S20 ; define mesh grid

      ; Heaters
      M305 P0 T98801 B4185 R2200 ; set thermistor + ADC parameters for heater 0
      M143 H0 S80 ; set temperature limit for heater 0 to 80C
      M305 P1 T98801 B4185 R2200 ; set thermistor + ADC parameters for heater 1
      M143 H1 S275 ; set temperature limit for heater 1 to 275C

      ; Fans
      M106 P0 S0 I0 F500 H-1 ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
      M106 P1 S0 I0 F500 H1 T45 ; set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
      M106 P2 S0 I0 F500 H1:0 T45 ; set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on

      ; Tools
      M563 P0 S"HotEnd" 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

      ; Miscellaneous
      M501 ; load saved parameters from non-volatile memory
      M911 S21 R23 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss
      T0 ; select first tool

      posted in Tuning and tweaking
      ddenundefined
      dden
    • RE: Idle temperature hot-end and bed to high

      @Veti Ok so now I am worried. Let’s dig in tomorrow

      posted in Tuning and tweaking
      ddenundefined
      dden
    • RE: Idle temperature hot-end and bed to high

      @Veti I will post my config tomorrow, I just turned the printer off

      posted in Tuning and tweaking
      ddenundefined
      dden
    • RE: Idle temperature hot-end and bed to high

      @Veti Yes I did. I followed the guide to the letter

      posted in Tuning and tweaking
      ddenundefined
      dden
    • Idle temperature hot-end and bed to high

      Hi, I just finished installing a duet2WiFi on my Ender3Pro and everything seems to work ok. Only funny thing is that the idle temperature of both my hot-end and bed are around 39 degrees Celcius. How can I calibrate these temperatures because in my opinion they should be in the low twenties and of course will also influence the temperatures in the high ranges. Hope someone can point me in the right direction.

      posted in Tuning and tweaking
      ddenundefined
      dden