Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. hmmatos
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 37
    • Best 1
    • Controversial 0
    • Groups 0

    hmmatos

    @hmmatos

    1
    Reputation
    3
    Profile views
    37
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    hmmatos Unfollow Follow

    Best posts made by hmmatos

    • RE: New Duet Owner Z issues etc.

      Hi @dunginhawk

      I'm configuring a CR-10 with Duet Wifi I'm learning but I think I can help you.

      Your Z step is wrong, if is a stock CR-10 it should be Z.400, change it and see if is better.

      What extruder are you using?
      If is the stock extruder the starting steps should be E93.00, and then do a calibration.

      I'm using the SEEMECNC EZR STRUDER and I have E119.88
      The E420.00 is for a 3:1 gear reduction extruder like a Bondtech or a Titan

      Here is my config.g

      ; Configuration file for Duet WiFi (firmware version 2.03)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v2.0.5 on Tue Oct 29 2019 22:40:39 GMT+0000 (Hora padrão da Europa Ocidental)
      
      ; General preferences
      G90                                         ; send absolute coordinates...
      M83                                         ; ...but relative extruder moves
      M550 P"CR10"                                ; set printer name
      
      ; Network
      M551 P"XXXXXXX"                            ; 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                                  ; physical drive 0 goes forwards
      M569 P1 S1                                  ; physical drive 1 goes forwards
      M569 P2 S0                                  ; physical drive 2 goes backwards
      M569 P3 S1                                  ; 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 Y80.00 Z400.00 E119.88           ; set steps per mm
      M566 X1200.00 Y1200.00 Z24.00 E300.00       ; set maximum instantaneous speed changes (mm/min)
      M203 X30000.00 Y30000.00 Z6000.00 E30000.00 ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z500.00 E500.00        ; set accelerations (mm/s^2)
      M906 X750 Y750 Z750 E750 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
      M558 P0 H2 F120 T6000                       ; disable Z probe but set dive height, probe speed and travel speed
      M557 X0:0 Y0:0 S20                          ; define mesh grid
      
      ; Heaters
      M307 H0 B0 S1.00                            ; disable bang-bang mode for the bed heater and set PWM limit
      M305 P0 T100000 B4092 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
      M143 H1 S285                                ; set temperature limit for heater 1 to 285C
      
      ; 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
      
      ; Miscellaneous
      M501                                        ; load saved parameters from non-volatile memory
      

      Like I said I'm learning as well and maybe we can help each other

      I leave here the settings I took from Marlin firmware from my CR-10

      //// MOVEMENT SETTINGS
      #define NUM_AXIS 4 // The axis order in all axis related arrays is X, Y, Z, E
      #define HOMING_FEEDRATE {50*60, 50*60, 4*60, 0}  // set the homing speeds (mm/min)
      
      // default settings
      
      #define DEFAULT_AXIS_STEPS_PER_UNIT   {80.000,80.000,400.000,93.00}  // default steps per unit for Ultimaker
      #define DEFAULT_MAX_FEEDRATE          {500, 500, 5, 25}    // (mm/sec)
      #define DEFAULT_MAX_ACCELERATION      {500,500,100,5000}    // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for skeinforge 40+, for older versions raise them a lot.
      
      #define DEFAULT_ACCELERATION          500    // X, Y, Z and E max acceleration in mm/s^2 for printing moves
      #define DEFAULT_RETRACT_ACCELERATION  500   // X, Y, Z and E max acceleration in mm/s^2 for retracts
      
      // Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing).
      // The offset has to be X=0, Y=0 for the extruder 0 hotend (default extruder).
      // For the other hotends it is their distance from the extruder 0 hotend.
      // #define EXTRUDER_OFFSET_X {0.0, 20.00} // (in mm) for each extruder, offset of the hotend on the X axis
      // #define EXTRUDER_OFFSET_Y {0.0, 5.00}  // (in mm) for each extruder, offset of the hotend on the Y axis
      
      // The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously)
      #define DEFAULT_XYJERK                20.0    // (mm/sec)
      #define DEFAULT_ZJERK                 0.4     // (mm/sec)
      #define DEFAULT_EJERK                 5.0    // (mm/sec)
      
      posted in Tuning and tweaking
      hmmatosundefined
      hmmatos

    Latest posts made by hmmatos

    • RE: Duet reboot when trying to heat bed

      Hello,

      thanks to all, it seems that the problem was in the power supply I did the test with the multimeter as suggested by @Phaedrux and as soon as I turn on the bed it loses power.

      I experimented with the original CR 10 power supply and all works normally and I think the board was not damaged.

      IMG_20201123_204137207.jpg

      Now the dilemma is to buy another power supply (12v) or buy a smaller one (24v) and a new bed to connect directly to the main power (I already have an SSR).

      The second option is much better but it is much more expensive...

      https://e3d-online.com/products/high-temperature-heated-beds

      Do you guys think having two power supplies is a solution?

      Can I have a 24v power supply for the board and hotend and a 12v one for the bed? is this a good solution?

      With the intention of upgrading the bed later...

      posted in Tuning and tweaking
      hmmatosundefined
      hmmatos
    • RE: Duet reboot when trying to heat bed

      @bearer

      did you see the video?
      I don't know if is a reboot it looks like and I lost connection to the board but is a quick thing

      posted in Tuning and tweaking
      hmmatosundefined
      hmmatos
    • RE: Duet reboot when trying to heat bed

      I also leave a video

      posted in Tuning and tweaking
      hmmatosundefined
      hmmatos
    • RE: Duet reboot when trying to heat bed

      @JamesM

      I have run this exact setup for more than a year, now the board can't handle it?

      IMG_20201123_164742755.jpg

      posted in Tuning and tweaking
      hmmatosundefined
      hmmatos
    • RE: Duet reboot when trying to heat bed

      @bearer

      M122
      === Diagnostics ===
      RepRapFirmware for Duet 2 WiFi/Ethernet version 3.1.1 running on Duet WiFi 1.02 or later
      Board ID: 08DGM-917DA-G4MS4-6J9DL-3SD6L-TVYZA
      Used output buffers: 3 of 24 (10 max)
      === RTOS ===
      Static ram: 27980
      Dynamic ram: 93860 of which 24 recycled
      Exception stack ram used: 264
      Never used ram: 8944
      Tasks: NETWORK(ready,368) HEAT(blocked,1224) MAIN(running,1848) IDLE(ready,80)
      Owned mutexes: WiFi(NETWORK)
      === Platform ===
      Last reset 00:00:18 ago, cause: power up
      Last software reset at 2020-11-22 23:43, reason: User, spinning module GCodes, available RAM 8944 bytes (slot 3)
      Software reset code 0x0003 HFSR 0x00000000 CFSR 0x00000000 ICSR 0x0041f000 BFAR 0xe000ed38 SP 0xffffffff Task MAIN
      Error status: 0
      MCU temperature: min 15.0, current 15.9, max 16.2
      Supply voltage: min 12.1, current 12.2, max 12.3, under voltage events: 0, over voltage events: 0, power good: yes
      Driver 0: standstill, SG min/max not available
      Driver 1: standstill, SG min/max not available
      Driver 2: standstill, SG min/max not available
      Driver 3: standstill, SG min/max not available
      Driver 4: standstill, SG min/max not available
      Date/time: 2020-11-23 16:42:56
      Cache data hit count 30199406
      Slowest loop: 3.34ms; fastest: 0.12ms
      I2C nak errors 0, send timeouts 0, receive timeouts 0, finishTimeouts 0, resets 0
      === Storage ===
      Free file entries: 10
      SD card 0 detected, interface speed: 20.0MBytes/sec
      SD card longest read time 3.0ms, write time 0.0ms, max retries 0
      === Move ===
      Hiccups: 0(0), FreeDm: 169, MinFreeDm: 169, MaxWait: 0ms
      Bed compensation in use: none, comp offset 0.000
      === MainDDARing ===
      Scheduled moves: 0, completed moves: 0, StepErrors: 0, LaErrors: 0, Underruns: 0, 0 CDDA state: -1
      === AuxDDARing ===
      Scheduled moves: 0, completed moves: 0, StepErrors: 0, LaErrors: 0, Underruns: 0, 0 CDDA state: -1
      === Heat ===
      Bed heaters = 0 -1 -1 -1, chamberHeaters = -1 -1 -1 -1
      === GCodes ===
      Segments left: 0
      Movement lock held by null
      HTTP is idle in state(s) 0
      Telnet is idle in state(s) 0
      File is idle in state(s) 0
      USB is idle in state(s) 0
      Aux is idle in state(s) 0
      Trigger is idle in state(s) 0
      Queue is idle in state(s) 0
      Daemon is idle in state(s) 0
      Autopause is idle in state(s) 0
      Code queue is empty.
      === Network ===
      Slowest loop: 16.16ms; fastest: 0.00ms
      Responder states: HTTP(2) HTTP(0) HTTP(0) HTTP(0) FTP(0) Telnet(0), 0 sessions
      HTTP sessions: 1 of 8

      • WiFi -
        Network state is active
        WiFi module is connected to access point
        Failed messages: pending 0, notready 0, noresp 0
        WiFi firmware version 1.23
        WiFi MAC address ec:fa:bc:2d:e7:66
        WiFi Vcc 3.35, reset reason Unknown
        WiFi flash size 4194304, free heap 24416
        WiFi IP address 192.168.1.100
        WiFi signal strength -61dBm, reconnections 0, sleep mode modem
        Socket states: 0 0 0 0 0 0 0 0
      posted in Tuning and tweaking
      hmmatosundefined
      hmmatos
    • Duet reboot when trying to heat bed

      Hello everyone,

      I need some help.
      I have a CR 10 with 2 wi-fi duets, I have had it for almost 3 years and it was fine.
      Since March I have not used it and now, before turned on again, I did some cable management and loaded a new configuration from scratch.
      Everything seems correct, I can home all the axes and heat the nozzle, but when I try to heat the bed the board restarts
      I checked all cables and terminals (they are the same as they were before).
      I need some ideas on how to debug this, has anyone had a similar problem?
      What should I do?

      I only get this error:

      Captura de ecrã 2020-11-22, às 23.44.52.png

      This is part of my config:

      Captura de ecrã 2020-11-22, às 23.46.30.png

      and this is the board:

      IMG_20201121_175309552.jpg

      the sensors seem to work correctly

      WhatsApp Image 2020-11-22 at 16.26.47.jpeg

      posted in Tuning and tweaking
      hmmatosundefined
      hmmatos
    • RE: Can i use pinda v2 connect to E1 endstop?

      Hi, in case of anyone needs I have connected like this:

      IMG_20200527_164648517.jpg

      IMG_20200527_165501570_MP.jpg

      it works very well

      posted in Filament Monitor
      hmmatosundefined
      hmmatos
    • RE: Can i use pinda v2 connect to E1 endstop?

      @inztigator did it work? did you connect the PINDA to the E1 endstop?
      Thanks

      posted in Filament Monitor
      hmmatosundefined
      hmmatos
    • RE: PINDA / Z probe / Mesh Compensation / offset / area for mesh

      well is not perfect but I think it works

      photo

      posted in Tuning and tweaking
      hmmatosundefined
      hmmatos
    • RE: PINDA / Z probe / Mesh Compensation / offset / area for mesh

      @Phaedrux thanks, I'll test with that

      posted in Tuning and tweaking
      hmmatosundefined
      hmmatos