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

    Topics created by mloidl

    • mloidlundefined

      RRF3 Deactivate External Trigger

      Firmware wishlist
      • • • mloidl
      5
      0
      Votes
      5
      Posts
      257
      Views

      mloidlundefined

      Thanks @Danal.

      You opened my eyes. Since your last post i thought it is possible to have multiple triggers for the same number.
      Double checked this in the code. Tn is definitely the key.

      So i have to change my emergency stop triggers a little bit otherwise they are not fully functional.

    • mloidlundefined

      Solved Question to Telnet Notifications with M118 P4

      Firmware wishlist
      • • • mloidl
      14
      0
      Votes
      14
      Posts
      1.1k
      Views

      mloidlundefined

      Successfully tested 2.04RC1 yesterday and can confirm that the line ending is now sent correctly. It's now very easy to handle the messages from the telnet port.

      @dc42 Thank you very much.

    • mloidlundefined

      Filament change during Bed heating not working as expected

      General Discussion
      • • • mloidl
      8
      0
      Votes
      8
      Posts
      1.0k
      Views

      zerspaner_gerdundefined

      @phaedrux Thank you for your prompt reply.

      So then

      M116 H1:2

      Will try it

    • mloidlundefined

      Use of 2 Endstops per axis as emergency stop

      General Discussion
      • • • mloidl
      4
      0
      Votes
      4
      Posts
      768
      Views

      mloidlundefined

      Did the configuration according your proposal and can verify it's working.

      For reference here are the relevant parts.

      config.g

      [[language]] M581 Y1:0 S1 T0 C0 ; Emergency Stop everytime E1 (Y-Min) is triggered

      homey.g

      [[language]] M581 Y1:0 S-1 T0 C0; Disable Y-Min Emergency Stop G91 ; relative positioning G1 Z5 F6000 ; lift Z relative to current position G1 S1 Y-293 F1800 ; move quickly to Y axis endstop and stop there (first pass) G1 Y5 F6000 ; go back a few mm G1 S1 Y-293 F360 ; move slowly to Y axis endstop once more (second pass) G1 Y1 F6000 ; move out of endstop by 1mm G92 Y0 ; Set Y to 0 G1 Z-5 F6000 ; lower Z again G90 ; absolute positioning M581 Y1:0 S1 T0 C0; Enable Y-Min Emergency Stop