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

Topics created by SetraX

  • undefined

    Duet2 - weak Z Axis

    Duet Hardware and wiring
    • • 17 Mar 2023, 23:28 • SetraX 14 Apr 2023, 18:30
    4
    0
    Votes
    4
    Posts
    164
    Views

    undefined 14 Apr 2023, 18:30

    @SetraX said in Duet2 - weak Z Axis:

    Changed the belts to steel enforced belts...

    Steel core belts are not recommended for the tight bend radius usually used in 3d printer drives. The steel cores will fatigue and break and the belts will then stretch.

  • undefined

    Compensation in DWC always NONE - why?

    General Discussion
    • • 6 Mar 2023, 07:48 • SetraX 6 Mar 2023, 16:42
    3
    0
    Votes
    3
    Posts
    157
    Views

    undefined 6 Mar 2023, 16:42

    You've created a heightmap based on the photos, but you don't have it loaded when you've sent M122. It's only loaded after creating a fresh one with G29, or loading a saved one with G29 S1.

  • undefined

    Solved Extruder E0 changes direction on Speed change

    Duet Hardware and wiring
    • • 17 Feb 2023, 14:59 • SetraX 17 Feb 2023, 15:06
    2
    0
    Votes
    2
    Posts
    92
    Views

    undefined 17 Feb 2023, 15:06

    @SetraX Well done !!! I screwed up with relative and absolute positioning.
    M82 ... I figured out from some partfiles sets to absolute positioning
    M83 ... sets the relative position as I need it ...SOLVED

  • undefined

    Duet2 RRF3.x no basic machine setup possible

    Using Duet Controllers
    • • 12 Feb 2023, 13:30 • SetraX 13 Feb 2023, 20:03
    6
    0
    Votes
    6
    Posts
    207
    Views

    undefined 13 Feb 2023, 20:03

    I would suggest that you upgrade to 3.4.5 by uploading the full zip file release to the system tab in DWC.

    https://github.com/Duet3D/RepRapFirmware/releases/download/3.4.5/Duet2and3Firmware-3.4.5.zip

    That will update everything including DWC.

    After updating the firmware can you send M98 P"config.g" to check for any syntax errors?

    For the PanelDue, what hardware version is it specifically? I have an old v2 panel and it still runs 3.4.x so unless you have a really ancient one I think you would be ok.

    ; Network M552 P0.0.0.0 S1 ; enable network and acquire dynamic address via DHCP M586 P0 S1 R80 ; enable HTTP on Port80

    I would simplify those to be M552 S1 and M586 P0 S1 since you're just listing the default values anyway.

    ; Z-Probe - BLTouch M950 H7 C"nil" ; Disable heaters h7 to free up pins

    It's not necessary to use "nil" to free up a pin unless it's already been assigned previously. At startup, it won't have been bound to anything yet.

    If this is a delta, your endstop configuration is incorrect.

    ; Endstops M574 X1 S1 P"xstop" ; X min active high endstop switch M574 Y1 S1 P"ystop" ; Y min active high endstop switch M574 Z1 S1 P"zstop" ; Z min active high endstop switch

    You have them set as low end stops. But on a delta they are at the top.

    X1 Y1 Z1 should be X2 Y2 Z2

    Fixing that should negate the need to do a weird workaround.

Unless otherwise noted, all forum content is licensed under CC-BY-SA